View in English

  • Apple Developer
    • Get Started

    Explore Get Started

    • Overview
    • Learn
    • Apple Developer Program

    Stay Updated

    • Latest News
    • Hello Developer
    • Platforms

    Explore Platforms

    • Apple Platforms
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    Featured

    • Design
    • Distribution
    • Games
    • Accessories
    • Web
    • Home
    • CarPlay
    • Technologies

    Explore Technologies

    • Overview
    • Xcode
    • Swift
    • SwiftUI

    Featured

    • Accessibility
    • App Intents
    • Apple Intelligence
    • Games
    • Machine Learning & AI
    • Security
    • Xcode Cloud
    • Community

    Explore Community

    • Overview
    • Meet with Apple events
    • Community-driven events
    • Developer Forums
    • Open Source

    Featured

    • WWDC
    • Swift Student Challenge
    • Developer Stories
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Centers
    • Documentation

    Explore Documentation

    • Documentation Library
    • Technology Overviews
    • Sample Code
    • Human Interface Guidelines
    • Videos

    Release Notes

    • Featured Updates
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • Downloads

    Explore Downloads

    • All Downloads
    • Operating Systems
    • Applications
    • Design Resources

    Featured

    • Xcode
    • TestFlight
    • Fonts
    • SF Symbols
    • Icon Composer
    • Support

    Explore Support

    • Overview
    • Help Guides
    • Developer Forums
    • Feedback Assistant
    • Contact Us

    Featured

    • Account Help
    • App Review Guidelines
    • App Store Connect Help
    • Upcoming Requirements
    • Agreements and Guidelines
    • System Status
  • Quick Links

    • Events
    • News
    • Forums
    • Sample Code
    • Videos
 

Videos

Abrir menú Cerrar menú
  • Colecciones
  • Todos los videos
  • Información

Más videos

  • Información
  • Código
  • The Push Notifications primer

    Help people get the most out of your app with push notifications for important events and updates — and by delivering up-to-date data in the background, so that it is ready when they open your app. Discover how you can use notifications and alert people to timely and relevant information. Learn the differences between alert and background notifications, how to adopt them in your apps, and avoid mistakes by using the right APIs for the job.

    Recursos

    • Implementing Background Push Notifications
    • Implementing Alert Push Notifications
      • Video HD
      • Video SD

    Videos relacionados

    WWDC23

    • Meet Push Notifications Console
  • Buscar este video…
    • 2:02 - Registering for notifications

      class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate {
      
          func application(_ application: UIApplication,
                           didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
              UIApplication.shared.registerForRemoteNotifications()
              UNUserNotificationCenter.current().delegate = self
              return true
          }
    • 2:36 - UIApplicationDelegate callbacks

      func application(_ application: UIApplication,
                         didFailToRegisterForRemoteNotificationsWithError error: Error) {
          // The token is not currently available.
          print("Remote notification is unavailable: \(error.localizedDescription)")
      }
      
      func application(_ application: UIApplication,
                         didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
           // Forward the token to your provider, using a custom method.
           self.forwardTokenToServer(token: deviceToken)
      }
    • 3:05 - Forward token to server

      func forwardTokenToServer(token: Data) {
          let tokenComponents = token.map { data in String(format: "%02.2hhx", data) }
          let deviceTokenString = tokenComponents.joined()
          let queryItems = [URLQueryItem(name: "deviceToken", value: deviceTokenString)]
          var urlComps = URLComponents(string: "www.example.com/register")!
          urlComps.queryItems = queryItems
          guard let url = urlComps.url else {
              return
          }
      
          let task = URLSession.shared.dataTask(with: url) { data, response, error in
              // Handle data
          }
      
          task.resume()
      }
    • 3:47 - Request authorization

      @IBAction func subscribeToNotifications(_ sender: Any) {
          let userNotificationCenter = UNUserNotificationCenter.current()
          userNotificationCenter.requestAuthorization(options: [.alert, .sound, .badge]) { (granted, error) in
              print("Permission granted: \(granted)")
          }
      }
    • 4:43 - Payload JSON

      {
          "aps" : {
             "alert" : {
                  "title" : "Check out our new special!",
                  "body" : "Avocado Bacon Burger on sale"
              },
              "sound" : "default",
              "badge" : 1,
         },
          "special" : "avocado_bacon_burger",
          "price" : "9.99"
      }
    • 6:11 - didReceive response

      func userNotificationCenter(_ center: UNUserNotificationCenter,
                                  didReceive response: UNNotificationResponse,
                                  withCompletionHandler completionHandler: @escaping () -> Void) {
          let userInfo = response.notification.request.content.userInfo
          guard let specialName = userInfo["special"] as? String,
                let specialPriceString = userInfo["price"] as? String,
                let specialPrice = Float(specialPriceString) else {
              // Always call the completion handler when done.
              completionHandler()
              return
          }
      
          let item = Item(name: specialName, price: specialPrice)
      		addItemToCart(item)
        	showCartViewController()
          completionHandler()
       }
    • 8:16 - Register for remote notifications (Background)

      class AppDelegate: UIResponder, UIApplicationDelegate {
      
          func application(_ application: UIApplication,
                           didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
             UIApplication.shared.registerForRemoteNotifications()
             return true
          }
    • 9:05 - Background Notification Payload

      {
          "aps" : {
             "content-available" : 1
          },
          "myCustomKey" : "myCustomData"
      }
    • 9:33 - didReceiveRemoteNotification

      func application(_ application: UIApplication,
                           didReceiveRemoteNotification userInfo: [AnyHashable : Any],
                           fetchCompletionHandler completionHandler:
                           @escaping (UIBackgroundFetchResult) -> Void) {
          guard let url = URL(string: "www.example.com/todays-menu") else {
              completionHandler(.failed)
              return
          }
      
          let task = URLSession.shared.dataTask(with: url) { data, response, error in
              guard let data = data else {
                  completionHandler(.noData)
                  return
              }
        
              updateMenu(withData: data)
              completionHandler(.newData)
          }
      }

Developer Footer

  • Videos
  • WWDC20
  • The Push Notifications primer
  • Open Menu Close Menu
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store
    Open Menu Close Menu
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • Icon Composer
    • SF Symbols
    Open Menu Close Menu
    • Accessibility
    • Accessories
    • Apple Intelligence
    • Audio & Video
    • Augmented Reality
    • Business
    • Design
    • Distribution
    • Education
    • Games
    • Health & Fitness
    • In-App Purchase
    • Localization
    • Maps & Location
    • Machine Learning & AI
    • Security
    • Safari & Web
    Open Menu Close Menu
    • Documentation
    • Downloads
    • Sample Code
    • Videos
    Open Menu Close Menu
    • Help Guides & Articles
    • Contact Us
    • Forums
    • Feedback & Bug Reporting
    • System Status
    Open Menu Close Menu
    • Apple Developer
    • App Store Connect
    • Certificates, IDs, & Profiles
    • Feedback Assistant
    Open Menu Close Menu
    • Apple Developer Program
    • Apple Developer Enterprise Program
    • App Store Small Business Program
    • MFi Program
    • Mini Apps Partner Program
    • News Partner Program
    • Video Partner Program
    • Security Bounty Program
    • Security Research Device Program
    Open Menu Close Menu
    • Meet with Apple
    • Apple Developer Centers
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Academies
    • WWDC
    Read the latest news.
    Get the Apple Developer app.
    Copyright © 2026 Apple Inc. All rights reserved.
    Terms of Use Privacy Policy Agreements and Guidelines