Swift example
- 24 Dec 2024
- 1 Minute à lire
- SombreLumière
- PDF
Swift example
- Mis à jour le 24 Dec 2024
- 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
// AppDelegate.swift
import UIKit
import ShieldSDK
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate, PRMShieldEventDelegate {
var window: UIWindow?
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
PRMShieldEventManager.shared().addObserver(observer: self)
return true
}
func jailbreakStatus(status isJailbroken: Bool) {
if isJailbroken {
handleDeviceIsJailbroken()
}
}
func screenshotDetected() {
handleScreenshotDetected()
}
}
Cet article vous a-t-il été utile ?