Побег из тюрьмы - PullRequest
       69

Побег из тюрьмы

0 голосов
/ 28 марта 2019

мой твик показывает какой-либо эффект.

лучше для заголовков WhatsApp

#import "headers/WAChatStorage.h"
#import "headers/WAMessage.h"

%hook WAChatStorage

- (void)revokeMessage:(id)arg1 {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:arg1 
                                                message:@"test"
                                               delegate:self   
                                      cancelButtonTitle:@"OK"                                                     
                                      otherButtonTitles:nil]; 
    [alert show];

}

-(void)revokeMessage:(id)arg1 fromWebClient:(_Bool)arg2 updatedStanzaID:(id)arg3
 {

               UIAlertView *alert = [[UIAlertView alloc] initWithTitle:arg1 
                                                message:arg3
                                               delegate:self   
                                      cancelButtonTitle:@"OK"                                                     
                                      otherButtonTitles:nil]; 
    [alert show];

}
%end

Пожалуйста, скажите мне, почему это не работает .... ничего не происходит

...