1
私はswift 2.2で正しく動作していますが、swift 3.0に変換するとエラーになります。事前にUIApplicationLaunch by remoteNotification swift 3が動作しない
ありがとう:
//If app open by notification
if launchOptions != nil
{
NSLog("launch------ %@", launchOptions!)
let userInfo = launchOptions!(UIApplicationLaunchOptionsKey.remoteNotification) as NSDictionary
if userInfo != nil
{
self.application(UIApplication.shared, didReceiveRemoteNotification: (userInfo)! as! [NSObject : AnyObject])
}
}
エラー
ようは非関数型の値 '[どれNSObjectの]' を呼び出すことはできません。
私はこれを使用するときにエラーが出るん、どのXcodeバージョンを使用していますか?私は8ベータ3を使用しているとエラーを与えるようです:メンバーの下付き文字へのあいまいな参照 – TheeBen
ここにコードを表示してください。 –