ミラー元
https://github.com/gilshahar7/InstantAssistant.git
前回の同期 2025-07-01 18:26:46 +00:00
13 行
377 B
Plaintext
13 行
377 B
Plaintext
@interface OPAVoicePlateController
|
|
-(void)didTapOnGlifView;
|
|
@end
|
|
|
|
%hook OPAVoicePlateController
|
|
-(OPAVoicePlateController *)init{
|
|
OPAVoicePlateController *origself = %orig;
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didTapOnGlifView) name:UIApplicationDidBecomeActiveNotification object:nil];
|
|
[self didTapOnGlifView];
|
|
return origself;
|
|
}
|
|
%end
|