From a7a65ed45d4a15490d1888672611a6030600326b Mon Sep 17 00:00:00 2001 From: KAWASHIMA Yoshiyuki Date: Tue, 18 Jan 2022 11:33:48 +0900 Subject: [PATCH] Demo: 'UIApplicationLaunchOptionsKey' has been renamed to 'UIApplication.LaunchOptionsKey' refs #41 #18 --- AKImageCropperViewExample/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AKImageCropperViewExample/AppDelegate.swift b/AKImageCropperViewExample/AppDelegate.swift index 2fbb507..c2d01cb 100644 --- a/AKImageCropperViewExample/AppDelegate.swift +++ b/AKImageCropperViewExample/AppDelegate.swift @@ -15,7 +15,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. return true }