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