Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Tweak.xm 377B

il y a 6 ans
il y a 6 ans
123456789101112
  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