Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- @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
|