Xcode 8 / स्विफ्ट 3.0 में पुश सूचनाओं के लिए पंजीकरण?


121

मैं अपने ऐप को Xcode 8.0 में काम करने की कोशिश कर रहा हूं , और मैं एक त्रुटि में चल रहा हूं। मुझे पता है कि इस कोड ने स्विफ्ट के पिछले संस्करणों में ठीक काम किया है, लेकिन मैं मान रहा हूं कि नए संस्करण में इसके लिए कोड बदल दिया गया है। यहाँ कोड मैं चलाने की कोशिश कर रहा हूँ:

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

जो त्रुटि मुझे मिल रही है वह है "तर्क लेबल '(forTypes :, श्रेणियां :)' किसी भी उपलब्ध ओवर से मेल नहीं खाते"

क्या कोई अलग कमांड है जिसे मैं इस काम में लाने की कोशिश कर सकता हूं?


2
मैंने एक गाइड लिखा कि कैसे करना है: eladnava.com/…
Elad Nava

जवाबों:


307

UserNotificationsफ्रेमवर्क आयात करें और UNUserNotificationCenterDelegateAppDelegate.swift में जोड़ें

उपयोगकर्ता की अनुमति का अनुरोध करें

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {


        let center = UNUserNotificationCenter.current()
        center.requestAuthorization(options:[.badge, .alert, .sound]) { (granted, error) in
            // Enable or disable features based on authorization.
        }
        application.registerForRemoteNotifications()
        return true
}

डिवाइस टोकन प्राप्त करना

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

    let deviceTokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})
    print(deviceTokenString)
}

त्रुटि के मामले में

func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {

        print("i am not available in simulator \(error)")
}

यदि आपको अनुमतियों को जानना आवश्यक है तो

UNUserNotificationCenter.current().getNotificationSettings(){ (settings) in

            switch settings.soundSetting{
            case .enabled:

                print("enabled sound setting")

            case .disabled:

                print("setting has been disabled")

            case .notSupported:
                print("something vital went wrong here")
            }
        }

1
मुझे स्विफ्ट 2.3 में त्रुटि मिलती है: UNUserNotificationCenter में कोई सदस्य वर्तमान नहीं है
Async-

हे आप उद्देश्य c
Ayaz

बस एक नोट, अब डिवाइस टोकन वापस नहीं करता है। कम से कम मेरे मामले में यह केवल "32 बाइट्स" लौटाता है
ब्रायन एफ लेटी

1
@ Async- आप करंट नहीं देख रहे हैं () क्योंकि यह केवल स्विफ्ट 3 में काम कर रहा है।
एलन

4
@PavlosNicolaou प्रयोक्ता-निर्धारण ढांचे को आयात करें
अनीश

48
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

    if #available(iOS 10, *) {

        //Notifications get posted to the function (delegate):  func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void)"


        UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (granted, error) in

            guard error == nil else {
                //Display Error.. Handle Error.. etc..
                return
            }

            if granted {
                //Do stuff here..

                //Register for RemoteNotifications. Your Remote Notifications can display alerts now :)
                DispatchQueue.main.async {
                    application.registerForRemoteNotifications()
                }
            }
            else {
                //Handle user denying permissions..
            }
        }

        //Register for remote notifications.. If permission above is NOT granted, all notifications are delivered silently to AppDelegate.
        application.registerForRemoteNotifications()
    }
    else {
        let settings = UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
        application.registerUserNotificationSettings(settings)
        application.registerForRemoteNotifications()
    }

    return true
}

इस नए ढांचे का अतिरिक्त लाभ क्या है? क्या मैं यहाँ देख एक का उपयोग कर 'completionHandler प्रतिनिधि से अधिक' दृष्टिकोण है और उसके बाद निर्णय लेने तुरंत आप के लिए दिया जाता है: दी, त्रुटि, या notGranted .... 6 <आईओएस <10 में आप करना था application.isRegisteredForRemoteNotifications()अगर यह देखने के लिए सही? और कुछ?
शहद

आपका उत्तर स्वीकृत उत्तर से अलग क्यों है? उन्होंने कहा कि एक application.registerForRemoteNotifications() के बाद उसकीcenter.requestAuthorization
हनी

1
@शहद; यदि आप "दूरस्थ" सूचनाओं को सक्षम करना चाहते हैं तो इसे जोड़ा गया है। जब मैंने अपना उत्तर लिखा, तो कोई अन्य उत्तर मौजूद नहीं था और @OP ने निर्दिष्ट नहीं किया कि वे दूरस्थ या स्थानीय या iOS 10 समर्थन चाहते हैं इसलिए मैंने जितना संभव हो उतना जोड़ा। ध्यान दें: आपको तब तक RemoteNotifications के लिए पंजीकरण नहीं करना चाहिए जब तक कि उपयोगकर्ता ने पहुंच प्रदान नहीं की है (अन्यथा सभी दूरस्थ सूचनाएं चुपचाप दी जाती हैं [जब तक कि आप जो चाहते हैं] - कोई पॉपअप नहीं)। इसके अलावा, नए एपीआई का लाभ यह है कि यह संलग्नक का समर्थन करता है। दूसरे शब्दों में, आप अपनी सूचनाओं में GIF और अन्य छवियाँ, वीडियो आदि जोड़ सकते हैं।
ब्रैंडन

3
बंद होने पर, आपको मुख्य थ्रेड पर UI से संबंधित कार्य करने होंगे ... DispatchQueue.main.async {... यहां सामान दें ...}
क्रिस एलिंसन

1
इस समाधान का लाभ जब AppDelegate में कोड में एक ही काम करने के लिए उपयोग नहीं किया जाता है
Codenator81

27
import UserNotifications  

अगला, अपने लक्ष्य के लिए परियोजना संपादक पर जाएं, और सामान्य टैब में, लिंक्ड फ़्रेमवर्क और लाइब्रेरी अनुभाग देखें।

+ पर क्लिक करें और UserNotifications.framework चुनें:

// iOS 12 support
if #available(iOS 12, *) {  
    UNUserNotificationCenter.current().requestAuthorization(options:[.badge, .alert, .sound, .provisional, .providesAppNotificationSettings, .criticalAlert]){ (granted, error) in }
    application.registerForRemoteNotifications()
}

// iOS 10 support
if #available(iOS 10, *) {  
    UNUserNotificationCenter.current().requestAuthorization(options:[.badge, .alert, .sound]){ (granted, error) in }
    application.registerForRemoteNotifications()
}
// iOS 9 support
else if #available(iOS 9, *) {  
    UIApplication.shared.registerUserNotificationSettings(UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil))
    UIApplication.shared.registerForRemoteNotifications()
}
// iOS 8 support
else if #available(iOS 8, *) {  
    UIApplication.shared.registerUserNotificationSettings(UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil))
    UIApplication.shared.registerForRemoteNotifications()
}
// iOS 7 support
else {  
    application.registerForRemoteNotifications(matching: [.badge, .sound, .alert])
}

अधिसूचना प्रतिनिधि विधियों का उपयोग करें

// Called when APNs has assigned the device a unique token
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {  
    // Convert token to string
    let deviceTokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})
    print("APNs device token: \(deviceTokenString)")
}

// Called when APNs failed to register the device for push notifications
func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {  
    // Print the error to console (you should alert the user that registration failed)
    print("APNs registration failed: \(error)")
}

पुश अधिसूचना प्राप्त करने के लिए

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
    completionHandler(UIBackgroundFetchResult.noData)
}

पुश सूचनाओं को सेट करना आपके ऐप के लिए Xcode 8 में सुविधा सक्षम कर रहा है। बस अपने लक्ष्य के लिए प्रोजेक्ट एडिटर पर जाएं और फिर क्षमताओं टैब पर क्लिक करें । के लिए देखो पुश सूचनाएं और करने के लिए अपने मूल्य टॉगल पर

अधिक अधिसूचना प्रतिनिधि विधियों के लिए नीचे दिए गए लिंक की जाँच करें

स्थानीय और दूरस्थ सूचनाएं संभालना UIApplicationDelegate - स्थानीय और दूरस्थ सूचनाएं संभालना

https://developer.apple.com/reference/uikit/uiapplicationdelegate


20

मैं यहाँ के जवाब के साथ मुद्दे थे डिवाइस युक्ति को एक स्ट्रिंग में परिवर्तित करने के लिए स्ट्रिंग को Xcode 8 के वर्तमान बीटा के साथ अपने सर्वर पर भेजने के लिए। विशेष रूप से एक जो 8.0b6 में डिवाइसटोकन का उपयोग कर रहा था जैसा कि "32 बाइट्स" लौटाएगा। बहुत उपयोगी नहीं है :)

इसी से मेरा काम बना है...

"हेक्सस्ट्रिंग" विधि को लागू करने के लिए डेटा पर एक एक्सटेंशन बनाएं:

extension Data {
    func hexString() -> String {
        return self.reduce("") { string, byte in
            string + String(format: "%02X", byte)
        }
    }
}

और तब उपयोग करें जब आपको दूरस्थ सूचनाओं के पंजीकरण से कॉलबैक प्राप्त होता है:

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    let deviceTokenString = deviceToken.hexString()
    // Send to your server here...
}

8
मुझे "32bytes" समस्या भी थी। महान समाधान, आप एक एक्सटेंशन बनाए बिना रूपांतरण को इन-लाइन कर सकते हैं। इस तरह से: let deviceTokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})
Alain Stulz

1
बेतुका है कि एपीआई से ही कोई समाधान नहीं निकल रहा है
एविएल ग्रॉस

1
हाँ यह हमेशा बहुत अजीब है कि एपीआई .. हैरान कर दिया जब iOS10 में नई सूचनाएं ढांचे कर वे यह ठीक नहीं हुआ किया गया है
tomwilson

17

अपने कोड के बजाय iOS10 में, आपको निम्नलिखित के साथ अधिसूचना के लिए एक प्राधिकरण का अनुरोध करना चाहिए: ( UserNotificationsफ्रेमवर्क जोड़ना मत भूलना )

if #available(iOS 10.0, *) {
        UNUserNotificationCenter.current().requestAuthorization([.alert, .sound, .badge]) { (granted: Bool, error: NSError?) in
            // Do something here
        }
    }

इसके अलावा, आपके लिए सही कोड है ( elseपिछली स्थिति में उपयोग , उदाहरण के लिए):

let setting = UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
UIApplication.shared().registerUserNotificationSettings(setting)
UIApplication.shared().registerForRemoteNotifications()

अंत में, सुनिश्चित करें कि -> -> के Push Notificationतहत सक्रिय है । (इसे सेट करें )targetCapabilitiesPush notificationOn


1
देखें: यहाँ Apple Doc
tsnkff

2
आपके उत्तर के लिए बहुत धन्यवाद! कोड का उपयोग करते हुए, हालांकि, यह "अनसुलझे पहचानकर्ता का उपयोग 'UNUserNotificationCenter' कह रहा है"
अशर नागफनी

और प्रलेखन, ब्लाब्लाब्ला के लिए बहुत बहुत धन्यवाद! मैंने यह नहीं देखा कि उनकी साइट पर, मुझे खुशी है कि यह मौजूद है। : डी
अशर हॉथोर्न 1

4
रुको, मुझे लगता है कि मुझे मिल गया! बस सूचनाओं के ढांचे को आयात करना था। XD
एशर हॉथोर्न

1
हां। मैं भविष्य के पाठक के लिए इसे जोड़ने के लिए अपने उत्तर को संपादित करूँगा। इसके अलावा, नई सूचनाओं के बारे में पढ़ें, अब अधिक शक्तिशाली और इंटरैक्टिव तरीके हैं। :)
tsnkff

8

वैसे यह काम मेरे लिए। सबसे पहले AppDelegate में

import UserNotifications

फिर:

   func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        // Override point for customization after application launch.
        registerForRemoteNotification()
        return true
    }

    func registerForRemoteNotification() {
        if #available(iOS 10.0, *) {
            let center  = UNUserNotificationCenter.current()
            center.delegate = self
            center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in
                if error == nil{
                    UIApplication.shared.registerForRemoteNotifications()
                }
            }
        }
        else {
            UIApplication.shared.registerUserNotificationSettings(UIUserNotificationSettings(types: [.sound, .alert, .badge], categories: nil))
            UIApplication.shared.registerForRemoteNotifications()
        }
    }

डेविक्टोकेन प्राप्त करने के लिए:

  func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

       let deviceTokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})

}

5

सिर ऊपर, आपको इस क्रिया के लिए मुख्य सूत्र का उपयोग करना चाहिए।

let center = UNUserNotificationCenter.current()
center.requestAuthorization(options:[.badge, .alert, .sound]) { (granted, error) in
        if granted {
            DispatchQueue.main.async(execute: {
                UIApplication.shared.registerForRemoteNotifications()
            })
        }
    }

2

सबसे पहले , registerForRemoteNotifications()एपीएन डिवाइस टोकन प्राप्त करने के लिए , उपयोगकर्ता अधिसूचना स्थिति को सुनें, अर्थात ;
दूसरा , अनुरोध प्राधिकरण। उपयोगकर्ता द्वारा अधिकृत होने पर, डिवाइसटोकन को श्रोता के पास भेजा जाएगा AppDelegate;
तीसरा , अपने सर्वर पर डिवाइस टोकन की रिपोर्ट करें।

extension AppDelegate {
    /// 1. 监听 deviceToken
    UIApplication.shared.registerForRemoteNotifications()

    /// 2. 向操作系统索要推送权限(并获取推送 token)
    static func registerRemoteNotifications() {
        if #available(iOS 10, *) {
            let uc = UNUserNotificationCenter.current()
            uc.delegate = UIApplication.shared.delegate as? AppDelegate
            uc.requestAuthorization(options: [.alert, .badge, .sound]) { (granted, error) in
                if let error = error { // 无论是拒绝推送,还是不提供 aps-certificate,此 error 始终为 nil
                    print("UNUserNotificationCenter 注册通知失败, \(error)")
                }
                DispatchQueue.main.async {
                    onAuthorization(granted: granted)
                }
            }
        } else {
            let app = UIApplication.shared
            app.registerUserNotificationSettings(UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil)) // 获取用户授权
        }
    }

    // 在 app.registerUserNotificationSettings() 之后收到用户接受或拒绝及默拒后,此委托方法被调用
    func application(_ app: UIApplication, didRegister notificationSettings: UIUserNotificationSettings) {
        // 已申请推送权限,所作的检测才有效
        // a 征询推送许可时,用户把app切到后台,就等价于默拒了推送
        // b 在系统设置里打开推送,但关掉所有形式的提醒,等价于拒绝推送,得不token,也收不推送
        // c 关掉badge, alert和sound 时,notificationSettings.types.rawValue 等于 0 和 app.isRegisteredForRemoteNotifications 成立,但能得到token,也能收到推送(锁屏和通知中心也能看到推送),这说明types涵盖并不全面
        // 对于模拟器来说,由于不能接收推送,所以 isRegisteredForRemoteNotifications 始终为 false
       onAuthorization(granted: app.isRegisteredForRemoteNotifications)
    }

    static func onAuthorization(granted: Bool) {
        guard granted else { return }
        // do something
    }
}

extension AppDelegate {
    func application(_ app: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
        //
    }

    // 模拟器得不到 token,没配置 aps-certificate 的项目也得不到 token,网络原因也可能导致得不到 token
    func application(_ app: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
        //
    }
}

एकाधिक अधिसूचना कैसे जोड़ें?
ArgaPK

@ArgaPK, पुश सूचनाएं भेजने के लिए आपका सर्वर प्लेटफॉर्म क्या करता है।
डॉनसॉन्ग

0

Ast1 का उत्तर बहुत ही सरल और उपयोगी है। यह मेरे लिए काम करता है, बहुत बहुत धन्यवाद। मैं बस इसे यहाँ इंगित करना चाहता हूं, इसलिए जिन लोगों को इस उत्तर की आवश्यकता है वे इसे आसानी से पा सकते हैं। इसलिए, यहां स्थानीय और दूरस्थ (पुश) अधिसूचना दर्ज करने से मेरा कोड है।

    //1. In Appdelegate: didFinishLaunchingWithOptions add these line of codes
    let mynotif = UNUserNotificationCenter.current()
    mynotif.requestAuthorization(options: [.alert, .sound, .badge]) {(granted, error) in }//register and ask user's permission for local notification

    //2. Add these functions at the bottom of your AppDelegate before the last "}"
    func application(_ application: UIApplication, didRegister notificationSettings: UNNotificationSettings) {
        application.registerForRemoteNotifications()//register for push notif after users granted their permission for showing notification
}
    func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    let tokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})
    print("Device Token: \(tokenString)")//print device token in debugger console
}
    func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
    print("Failed to register: \(error)")//print error in debugger console
}

0

बस निम्नलिखित में करें didFinishWithLaunching::

if #available(iOS 10.0, *) {

    let center = UNUserNotificationCenter.current()

    center.delegate = self
    center.requestAuthorization(options: []) { _, _ in
        application.registerForRemoteNotifications()
    }
}

आयात विवरण के बारे में याद रखें:

import UserNotifications

मेरा मानना ​​है कि यह स्वीकृत उत्तर होना चाहिए। registerForRemoteNotifications()के पूर्ण हैंडलर में कॉल करना सही लगता है requestAuthorization()। तुम भी registerForRemoteNotifications()एक if grantedबयान के साथ घेरना चाहते हो सकता है : center.requestAuthorization(options:[.badge, .alert, .sound]) { (granted, error) in if granted { UIApplication.shared.registerForRemoteNotifications() } }
Bocaxica

-1

इस टिप्पणी कोड पर एक नज़र डालें:

import Foundation
import UserNotifications
import ObjectMapper

class AppDelegate{

    let center = UNUserNotificationCenter.current()
}

extension AppDelegate {

    struct Keys {
        static let deviceToken = "deviceToken"
    }

    // MARK: - UIApplicationDelegate Methods
    func application(_: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

        if let tokenData: String = String(data: deviceToken, encoding: String.Encoding.utf8) {
            debugPrint("Device Push Token \(tokenData)")
        }

        // Prepare the Device Token for Registration (remove spaces and < >)
        setDeviceToken(deviceToken)
    }

    func application(_: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
        debugPrint(error.localizedDescription)
    }

    // MARK: - Private Methods
    /**
     Register remote notification to send notifications
     */
    func registerRemoteNotification() {

        center.requestAuthorization(options: [.alert, .sound, .badge]) { (granted, error) in

            // Enable or disable features based on authorization.
            if granted  == true {

                DispatchQueue.main.async {
                    UIApplication.shared.registerForRemoteNotifications()
                }
            } else {
                debugPrint("User denied the permissions")
            }
        }
    }

    /**
     Deregister remote notification
     */
    func deregisterRemoteNotification() {
        UIApplication.shared.unregisterForRemoteNotifications()
    }

    func setDeviceToken(_ token: Data) {
        let token = token.map { String(format: "%02.2hhx", arguments: [$0]) }.joined()
        UserDefaults.setObject(token as AnyObject?, forKey: “deviceToken”)
    }

    class func deviceToken() -> String {
        let deviceToken: String? = UserDefaults.objectForKey(“deviceToken”) as? String

        if isObjectInitialized(deviceToken as AnyObject?) {
            return deviceToken!
        }

        return "123"
    }

    func isObjectInitialized(_ value: AnyObject?) -> Bool {
        guard let _ = value else {
                return false
         }
            return true
    }
}

extension AppDelegate: UNUserNotificationCenterDelegate {

    func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping(UNNotificationPresentationOptions) -> Swift.Void) {

        ("\(notification.request.content.userInfo) Identifier: \(notification.request.identifier)")

        completionHandler([.alert, .badge, .sound])
    }

    func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping() -> Swift.Void) {

        debugPrint("\(response.notification.request.content.userInfo) Identifier: \(response.notification.request.identifier)")

    }
}

कोई समस्या हो तो मुझे बताएं!

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.