1
0
zrcadlo https://github.com/gilshahar7/InstantAssistant.git synchronizováno 2025-07-03 19:16:46 +00:00
Files
InstantAssistant/Tweak.xm
2018-11-27 18:21:48 +02:00

13 řádky
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