Méthode UIApplicationDelegate - application (_: didFinishLaunchingWithOptions :) affiche une erreur avec Swift 4.2 (Xcode 10).
UIApplicationLaunchOptionsKey not found
Qu'est-ce que le remplacement de UIApplicationLaunchOptionsKey
dans Swift 4.2?
Xcode corrigerait le problème mais UIApplicationLaunchOptionsKey
est remplacé par un type imbriqué UIApplication.LaunchOptionsKey
.
Il devrait s'agir de UIApplication.LaunchOptionsKey
. Veuillez trouver les informations suivantes Documentation Apple
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
}
J'ai essayé l'extrait de code ci-dessous et j'ai travaillé pour moi.
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication: Any]? = nil) -> Bool {
}
Il suffit de fournir UIApplication dans launchOptions . J'espère que cela fonctionnera pour vous également. :)