web-dev-qa-db-ja.com

通知がタップされたときにSwift 3で起動オプションを処理する方法は?構文の問題を取得する

Swift 3.で受け取ったリモート通知をタップすると、起動オプションを処理し、特定のView Controllerを開きます。たとえば、 here =、しかし、新しいSwift 3実装については何もありません。同様の質問がありました。

    var localNotif = (launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey] as! String)
if localNotif {
    var itemName = (localNotif.userInfo!["aps"] as! String)
    print("Custom: \(itemName)")
}
else {
    print("//////////////////////////")
}

しかし、Xcodeは私にこのエラーを与えています:

Type '[NSObject: AnyObject]?' has no subscript members

私もこれを試しました:

   if let launchOptions = launchOptions {
        var notificationPayload: NSDictionary = launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey] as NSDictionary!

    }

私はこのエラーを受け取ります:

error: ambiguous reference to member 'subscript'

以前に同様のコードを使用してキーで辞書から値を取得した場所で同様のエラーが発生し、コードを置き換えて基本的に辞書を安全にアンラップする必要がありました。しかし、ここではうまくいかないようです。任意の助けをいただければ幸いです。ありがとう。

17
TheeBen

そのため、メソッドシグネチャ全体が変更され、新しいシグネチャを実装すると、問題なく動作することがわかりました。以下はコードです。

新しいdidFinishLaunchingWithOptionsメソッド:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]? = nil) -> Bool {



//and then 
 if launchOptions?[UIApplicationLaunchOptionsKey.remoteNotification] != nil {


// Do what you want to happen when a remote notification is tapped.


}

}

お役に立てれば。

14
TheeBen

AppleはSwift 3とこれに多くの変更を加えました。

編集:これはSwift 4にも有効です。

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    //Launched from Push notification
    let remoteNotif = launchOptions?[UIApplicationLaunchOptionsKey.remoteNotification] as? [String: Any]
    if remoteNotif != nil {
        let aps = remoteNotif!["aps"] as? [String:AnyObject]
        NSLog("\n Custom: \(String(describing: aps))")
    }
    else {
        NSLog("//////////////////////////Normal launch")
    }
}

Swift 5:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
    //Launched from Push notification
    guard let options = launchOptions,
        let remoteNotif = options[UIApplication.LaunchOptionsKey.remoteNotification] as? [String: Any]
        else {
            return
    }
    let aps = remoteNotif["aps"] as? [String: Any]
    NSLog("\n Custom: \(String(describing: aps))")

    handleRemoteNotification(remoteNotif)
}

LaunchOptionKeysの詳細については、Appleの ドキュメント を参照してください。

21
Adeel

スイフト4

// Check if launched from the remote notification and application is close
 if let remoteNotification = launchOptions?[.remoteNotification] as?  [AnyHashable : Any] {
            // Do what you want to happen when a remote notification is tapped.
            let aps = remoteNotification["aps" as String] as? [String:AnyObject]
            let apsString =  String(describing: aps)
            debugPrint("\n last incoming aps: \(apsString)")
    }
6
Amr Angry

スウィフト3:

        if let notification = launchOptions?[.localNotification] as? NSDictionary{

            #if DEBUG
                print("iOS9 didFinishLaunchingWithOptions notification\n \(notification)")
            #endif
0
ingconti
if let remoteNotif = launchOptions?[UIApplicationLaunchOptionsKey.remoteNotification] as? [String: Any] {
       if let notification = remoteNotif["aps"] as? [AnyHashable : Any] {
               //handle PN
       }
}
0
Svitlana