Objective-C example
- 22 Jan 2025
- 1 Minute à lire
- SombreLumière
- PDF
Objective-C example
- Mis à jour le 22 Jan 2025
- 1 Minute à lire
- SombreLumière
- PDF
The content is currently unavailable in French. You are viewing the default English version.
Résumé de l’article
Avez-vous trouvé ce résumé utile ?
Merci pour vos commentaires
#import "AppDelegate.h"
#import <ShieldSDK/Shield.h>
@interface AppDelegate () <PRMShieldEventDelegate>
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[[PRMShieldEventManager sharedManager] addObserver:self];
if (!@available(iOS 16, *)) {
NSLog(@"%@", @"Developer mode status checking unavailable pre-iOS 16.");
}
return YES;
}
- (void)jailbreakStatus:(BOOL)isJailbroken {
if (isJailbroken) {
[self handleDeviceIsJailbroken];
}
}
- (void)screenshotDetected {
[self handleScreenshotDetected];
}
@end
Cet article vous a-t-il été utile ?