Share:
Hello,
I’m working on an iOS app and I need to implement push notifications. Can someone guide me through the process of setting up push notifications in iOS using Swift? What are the necessary steps and best practices for handling notifications?
Hide Responses
Hi,
To handle push notifications in iOS with Swift:
import UserNotifications
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound, .badge]) { granted, error in
if granted {
DispatchQueue.main.async {
UIApplication.shared.registerForRemoteNotifications()
}
}
}
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
let tokenParts = deviceToken.map { data in String(format: "%02.2hhx", data) }
let token = tokenParts.joined()
print("Device Token: \(token)")
}
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any],
fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
print("Received Notification: \(userInfo)")
completionHandler(.newData)
}
UNUserNotificationCenter.current().delegate = self
extension AppDelegate: UNUserNotificationCenterDelegate {
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler([.alert, .sound, .badge])
}
}
This setup enables push notifications in your iOS app using Swift.
James Sullivan
9 months ago