Push-уведомления не работают, когда я отключаю свое устройство от Xcode - PullRequest
0 голосов
/ 02 марта 2019

Я занимаюсь разработкой приложения для IOS, используя быстрый язык.Я добавил в свой проект push-уведомления на основе Firebase.они работают правильно, когда мое устройство подключено к xcode или когда я отлаживаю свое приложение на своем устройстве.Но когда я отключаю свое устройство от xcode или использую приложение без отладки, push-уведомление не работает.Я ищу решение

Мой код в файле делегата приложения

В функции didFinishLaunchingWithOptions

if #available(iOS 10.0, *) {
        // For iOS 10 display notification (sent via APNS)
        UNUserNotificationCenter.current().delegate = self

        let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound]
        UNUserNotificationCenter.current().requestAuthorization(options: authOptions,
                                                                completionHandler: { (bool, err) in

        })

    } else {

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

    }

    application.registerForRemoteNotifications()
    UIApplication.shared.applicationIconBadgeNumber = 0

в функции didregisterdevicewtoken

 func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    print("APNs token retrieved: \(deviceToken)")

    // With swizzling disabled you must set the APNs token here.
    if let refreshedToken = InstanceID.instanceID().token() {
        print("InstanceID token: \(refreshedToken)")

    }
    let tokenT = deviceToken.map { String(format: "%02.2hhx", $0) }.joined()
    print(tokenT)
    guard let token = InstanceID.instanceID().token() else {return}
    AppDelegate.DEVICEID = token
    print(token)
    UserDefaults.standard.set(token, forKey: "token")

    connectToFCM()


}

И чтобысоздать уведомление

 func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any],
                 fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
    // If you are receiving a notification message while your app is in the background,
    // this callback will not be fired till the user taps on the notification launching the application.
    // TODO: Handle data of notification

    // With swizzling disabled you must let Messaging know about the message, for Analytics
    // Messaging.messaging().appDidReceiveMessage(userInfo)

    // Print message ID.
    if let messageID = userInfo[gcmMessageIDKey] {
        print("Message ID: \(messageID)")
    }

    if let msg = userInfo["desc"] as? String
    {
        let title = userInfo["noti_title"] as? String
        createNotification(message: msg, title: title ?? "" )

    }

    // Print full message.
    print(userInfo)

    completionHandler(UIBackgroundFetchResult.newData)
}


func createNotification(message: String, title: String) {

    let content = UNMutableNotificationContent()
    content.title =  title
    content.body = message


    let triger = UNTimeIntervalNotificationTrigger(timeInterval: 2, repeats: false )
    let request = UNNotificationRequest(identifier: "TextMessage", content: content, trigger: triger)



    UNUserNotificationCenter.current().add(request, withCompletionHandler: nil)
}

UNUserNotificationCenterDelegate

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

    if let messageID = userInfo[gcmMessageIDKey] {
        print("Message ID: \(messageID)")
    }

    print(userInfo)

    // Change this to your preferred presentation option
    completionHandler([.alert,.badge,.sound])
}


func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
    let application = UIApplication.shared

    if(application.applicationState == .active){
        print("user tapped the notification bar when the app is in foreground")

        window = UIWindow(frame: UIScreen.main.bounds)
        window?.makeKeyAndVisible()

        //        let layout = UICollectionViewFlowLayout()
        window?.rootViewController = UINavigationController(rootViewController: NotificationViewController())


    }

    if(application.applicationState == .inactive)
    {
        print("user tapped the notification bar when the app is in background")
        window = UIWindow(frame: UIScreen.main.bounds)
        window?.makeKeyAndVisible()

        //        let layout = UICollectionViewFlowLayout()
        window?.rootViewController = UINavigationController(rootViewController: NotificationViewController())

    }

    /* Change root view controller to a specific viewcontroller */
    // let storyboard = UIStoryboard(name: "Main", bundle: nil)
    // let vc = storyboard.instantiateViewController(withIdentifier: "ViewControllerStoryboardID") as? ViewController
    // self.window?.rootViewController = vc

    completionHandler()
}

func connectToFCM()
{
    Messaging.messaging().shouldEstablishDirectChannel = true
}
func initializeNotificationServices() -> Void {
    let settings = UIUserNotificationSettings(types: [.sound, .alert, .badge], categories: nil)
    UIApplication.shared.registerUserNotificationSettings(settings)

    // This is an asynchronous method to retrieve a Device Token
    // Callbacks are in AppDelegate.swift
    // Success = didRegisterForRemoteNotificationsWithDeviceToken
    // Fail = didFailToRegisterForRemoteNotificationsWithError
    UIApplication.shared.registerForRemoteNotifications()

1 Ответ

0 голосов
/ 02 марта 2019

Я решил эту проблему.Теперь я добавил производственный сертификат Apn в консоль Firebase и удалил сертификат разработки APN из консоли FireBase.для тех, у кого была такая же проблема, пожалуйста, сгенерируйте ваш рабочий apn из apple.developers и измените схему вашего проекта с отладочной на выпуск во вкладке сборки.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...