【问题标题】:Swift 3 - Firebase Push Notification, How can I do?Swift 3 - Firebase 推送通知,我该怎么做?
【发布时间】:2017-01-18 22:24:42
【问题描述】:

我在 Swift 2 中确实喜欢下面的内容。但它在 Swift 3 中不起作用。我该如何提供这个?如果有人解释一下,那就太好了。

didFinishLaunchingWithOptions

let notificationSettings = UIUserNotificationSettings(forTypes: [.Alert, .Badge, .Sound], categories: nil)
UIApplication.sharedApplication().registerUserNotificationSettings(notificationSettings)
application.registerForRemoteNotifications()

func application(application: UIApplication, didRegisterUserNotificationSettings notificationSettings: UIUserNotificationSettings) {
    if notificationSettings.types != .None {
        application.registerForRemoteNotifications()
    }
}

func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {

    print("Meesage ID \(userInfo["gcm_message_id"]!)")
    print(userInfo)

}

我可以进行简单的本地通知,但无法从 Firebase 远程推送通知。

我试过了

UNUserNotificationCenter.currentNotificationCenter().delegate = self

UNUserNotificationCenter.currentNotificationCenter().requestAuthorizationWithOptions([.Alert, .Badge, .Sound]) { (success, error:NSError?) in

        if success {
            print("Notification access true!")
            application.registerForRemoteNotifications()
        }
        else {
            print(error?.localizedDescription)
        }

}

func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {

    print("Meesage ID \(userInfo["gcm_message_id"]!)")
    print(userInfo)

}

还是不行。

【问题讨论】:

  • 委托方法的名称略有变化。通过输入每个方法的名称,您应该会在 Swift 3 中看到相应的方法作为建议。

标签: ios swift firebase swift3 firebase-notifications


【解决方案1】:

这对我来说是 Xcode 8,Swift 3。

AppDelegate.swift 中的 didFinishLaunchingwithOptions 函数内部

if #available(iOS 10.0, *) {
            let authOptions : UNAuthorizationOptions = [.alert, .badge, .sound]
            UNUserNotificationCenter.current().requestAuthorization(
                options: authOptions,
                completionHandler: {granted, error in
                    print(granted)
            })

            // For iOS 10 display notification (sent via APNS)
            UNUserNotificationCenter.current().delegate = self
            // For iOS 10 data message (sent via FCM)
            FIRMessaging.messaging().remoteMessageDelegate = self

        } else {
            let settings: UIUserNotificationSettings =
                UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
            application.registerUserNotificationSettings(settings)
        }

        application.registerForRemoteNotifications()

        FIRApp.configure()

        // [START set_messaging_delegate]
        FIRMessaging.messaging().remoteMessageDelegate = self
        // [END set_messaging_delegate]

以及从 firebase 接收通知所需的代表:

@available(iOS 10, *)
extension AppDelegate : UNUserNotificationCenterDelegate {

    // Receive displayed notifications for iOS 10 devices.

    func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
        let userInfo = notification.request.content.userInfo
        // Print message ID.
        print("Message ID: \(userInfo["gcm.message_id"]!)")

        // Print full message.
        print("%@", userInfo)

        let aps = userInfo["aps"] as! [String: Any]
        let notificationMessage = aps["alert"] as! String // processed content from notificaton

    }

}

extension AppDelegate : FIRMessagingDelegate {
    // Receive data message on iOS 10 devices.
    func applicationReceivedRemoteMessage(_ remoteMessage: FIRMessagingRemoteMessage) {
        print("%@", remoteMessage.appData)

    }
}

【讨论】:

    【解决方案2】:

    AppDelegate 方法名称发生了一些变化,并引入了 UserNotifications 框架。您必须在 iOS 10 及更高版本中将此框架用于通知,因为其他方法已被弃用。

    import UserNotifications
    
    ...
    
    @UIApplicationMain
    class AppDelegate: UIResponder, UIApplicationDelegate {
    
        ...
    
        func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    
            UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (granted, error) in
                // Enable or disable features based on authorization.
            }
    
            application.registerForRemoteNotifications()
    
            return true
        }
    
        func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> ()) {
    
            print("Message ID \(userInfo["gcm.message_id"]!)")
            print(userInfo)
        }
    
        ...
    }
    

    Registering for Push Notifications in Xcode 8/Swift 3.0?

    【讨论】:

      【解决方案3】:

      记住,可能有不同的设备运行不同版本的 iOS,并且它们可能具有不同的通知功能,这一点非常重要。我知道前面的答案确实指向了正确的方向。

      如果我们要接收实例或基于事件的通知,我们需要import FirebaseInstanceID。此类通知类似于有人转发我们的帖子、点赞帖子或消息通知时弹出的通知。

      但是,如果有人正在寻找进入 AppDelegate 中的 didFinishLaunchingWithOptions 函数的完整代码,这里是:

          func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
      
          FIRApp.configure()
      
          if #available(iOS 10.0, *) {
              let authOptions : UNAuthorizationOptions = [.Alert, .Badge, .Sound]
                 UNUserNotificationCenter.currentNotificationCenter().requestAuthorizationWithOptions(
                  authOptions, completionHandler: {_,_ in })
          } else {
              // Fallback on earlier versions
              let settings: UIUserNotificationSettings =
                  UIUserNotificationSettings(forTypes: [.Alert, .Badge, .Sound], categories: nil)
              application.registerUserNotificationSettings(settings)
              application.registerForRemoteNotifications()
          }
      
          application.registerForRemoteNotifications()
      
          // Add observer for InstanceID token refresh callback.
      NSNotificationCenter.defaultCenter().addObserver(self,
          selector: #selector(self.tokenRefreshNotification),
          name: kFIRInstanceIDTokenRefreshNotification,
          object: nil)
      
          return true
      }
      
        func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject],
                     fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
      // This is required if you are receiving a notification message while your app is in the background, which is the most common case!!
      
      print("Message ID: \(userInfo["gcm.message_id"]!)")
      
      print("%@", userInfo)
      }
      
      
      func tokenRefreshNotification(notification: NSNotification) {
      if let refreshedToken = FIRInstanceID.instanceID().token() {
        print("InstanceID token: \(refreshedToken)")
      }
      
      connectToFcm()
      }
      
      
      func connectToFcm() {
      FIRMessaging.messaging().connectWithCompletion { (error) in
        if (error != nil) {
          print("Unable to connect with FCM. \(error)")
        } else {
          print("Connected to FCM.")
        }
       }
      }
      func applicationDidBecomeActive(application: UIApplication) {
      connectToFcm()
      }
      func applicationDidEnterBackground(application: UIApplication) {
      FIRMessaging.messaging().disconnect()
      print("Disconnected from FCM.")
      }
      

      【讨论】:

        猜你喜欢
        • 2017-10-10
        • 2017-02-05
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2016-12-06
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多