Hi guys I really need your help can someone help me with make my uialert shows just once
@Rook @Laxus
the tweak.x👇🏼
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <UIKit/UIControl.h>
#import <spawn.h>
#import <SCLAlertView/SCLAlertView.h>
#import <CoreGraphics/CoreGraphics.h>
#import <Accounts/Accounts.h>
#import <Social/Social.h>
#import <AVFoundation/AVFoundation.h>
%hook UIApplication
-(void)finishedTest:(id)arg1 extraResults:(id)arg2 {
%orig;
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"MKAF7 - Iosgods" message:@"ALL FEATURES IS ACTIVE 👍"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* halimButton = [UIAlertAction
actionWithTitle:@"iosgods.com "
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
[[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"www.iosgods.com"]];
}];
UIAlertAction* TVButton = [UIAlertAction
actionWithTitle:@"Done " style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
}];
[halimButton setValue:[UIColor redColor] forKey:@"titleTextColor"];
[TVButton setValue:[UIColor redColor] forKey:@"titleTextColor"];
[alert addAction:halimButton];
[alert addAction:TVButton];
[[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alert animated:true completion:nil];
alert.view.tintColor = [UIColor purpleColor];
}
%end
%hook XYIAPMgr
-(bool)isVIP {
return 1;
}
%end