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.

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