Tuesday 12 December 2023

Help with UIAlertController

%hook AppDelegate -(void)applicationDidBecomeActive:(UIApplication *)application { UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Title" message:@"App opened!" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil]; [alert addAction:okAction]; [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alert animated:YES completion:nil]; } %end can someone check the code please, does not work.. im hooking the right class and method

from iOSGods RSS Feed https://ift.tt/PrhnUd9

No comments:

Post a Comment