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.

13 lines
377B

  1. @interface OPAVoicePlateController
  2. -(void)didTapOnGlifView;
  3. @end
  4. %hook OPAVoicePlateController
  5. -(OPAVoicePlateController *)init{
  6. OPAVoicePlateController *origself = %orig;
  7. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didTapOnGlifView) name:UIApplicationDidBecomeActiveNotification object:nil];
  8. [self didTapOnGlifView];
  9. return origself;
  10. }
  11. %end