You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- @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
|