1
0
ミラー元 https://github.com/gilshahar7/InstantAssistant.git 前回の同期 2025-07-01 18:26:46 +00:00
ファイル
InstantAssistant/Tweak.xm
2018-11-27 18:21:48 +02:00

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