Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- @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
|