選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
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