Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Pushing the Envelope with iOS 10 Notifications - CocoaConf Chicago, April 2017

Pushing the Envelope with iOS 10 Notifications - CocoaConf Chicago, April 2017

An expanded summary of the big changes to Notifications in iOS 10, and some fun stupid things I've learned since I first gave this presentation in September of 2016.

Sample code (Updated for Xcode 8.3):
https://github.com/designatednerd/iOS10NotificationSample

iOS 9 Video:
https://youtu.be/jNr0U-bCfs0

iOS 10 Video:
https://youtu.be/Qubmnmh6a_g

Original Slides:
https://speakerdeck.com/designatednerd/pushing-the-envelope-with-ios-10-notifications-try-swift-nyc-september-2016

Ellen Shapiro

April 22, 2017
Tweet

More Decks by Ellen Shapiro

Other Decks in Technology

Transcript

  1. Pushing the Envelope With iOS 10 Notifications CocoaConf Chicago |

    April 2017 by Ellen Shapiro @designatednerd | SpotHero.com | JustHum.com
  2. Kinds of Notifications We Use Push Notifications Silent Push Notifications

    Geofenced Notifications Time/Date Scheduled Notifications
  3. Ye Olde and Busted Way Push notifications and local notifications

    are totally different classes, with totally different paths
  4. Kinds of Notifications We Use Push Notifications remote Silent Push

    Notifications remote Geofenced Notifications local Time/Date Scheduled Notifications local
  5. Ye Olde and Busted Way Push notifications and local notifications

    are totally different classes, with totally different paths Remote notifications can't be updated by the system
  6. Ye Olde and Busted Way Push notifications and local notifications

    are totally different classes, with totally different paths Remote notifications can't be updated once received If you send things which change remotely, you have to send one kajillion separate notifications
  7. Ye Olde and Busted Way Push notifications and local notifications

    are totally different classes, with totally different paths Remote notifications can't be updated once received If you send things which change remotely, you have to send one kajillion* separate notifications *-rough estimate
  8. Ye Awesome Neue Way A Notification is a Notification is

    a Notification Notification extensions can grab additional content like images and videos from remote notifications
  9. Ye Awesome Neue Way A Notification is a Notification is

    a Notification Notification extensions can grab additional content like images and videos from remote notifications Remote notifications can have unique identifiers and be updated rather than having to send separate notifications.
  10. Other helpful changes Notifications received while the app is in

    the foreground can be shown using system UI
  11. Other helpful changes Notifications received while the app is in

    the foreground can be shown using system UI Local/Remote notification handling delegate methods are now combined
  12. Other helpful changes Notifications received while the app is in

    the foreground can be shown using system UI Local/Remote notification handling delegate methods are now combined (and no longer on UIApplicationDelegate)
  13. Other helpful changes Notifications received while the app is in

    the foreground can be shown using system UI Local/Remote notification handling delegate methods are now combined (and no longer on UIApplicationDelegate*) *mostly
  14. Other annoying changes I really hope you like extensions A

    couple bits are still in the UIApplicationDelegate
  15. Other annoying changes I really hope you like extensions A

    couple bits are still in the UIApplicationDelegate Threading? ¯\_(ϑ)_/¯
  16. Other annoying changes I really hope you like extensions A

    couple bits are still in the UIApplicationDelegate Threading? ¯\_(ϑ)_/¯ Simultaneous support of old and busted with the new hotness is REAL obnoxious.
  17. !

  18. What Do You Need To Do? 1. Use the UNNotifications

    framework 2. Create A Framework For Shared Elements
  19. What Do You Need To Do? 1. Use the UNNotifications

    framework 2. Create A Framework For Shared Elements 3. Create a Notification Service Extension
  20. What Do You Need To Do? 1. Use the UNNotifications

    framework 2. Create A Framework For Shared Elements 3. Create a Notification Service Extension 4. Create a Notification Content extension (needs the UserNotificationsUI framework)
  21. What Do You Need To Do? 1. Use the UNNotifications

    framework 2. Create A Framework For Shared Elements 3. Create a Notification Service Extension 4. Create a Notification Content extension (needs the UserNotificationsUI framework) 5. Start begging working on convincing your Product team to drop iOS 9 support.
  22. WWDC Sessions! → WWDC 2016 Session 707 - Introduction to

    Notifications https://developer.apple.com/ videos/play/wwdc2016/707/ → WWDC 2016 Session 708 - Advanced Notifications: https://developer.apple.com/videos/play/ wwdc2016/708/
  23. Links! → iOS 10 API Diff: https://developer.apple.com/ library/prerelease/content/releasenotes/ General/iOS10APIDiffs/ →

    iOS 10 By Tutorials Preview: https:// www.raywenderlich.com/store/ios-10-by-tutorials → Castro's use of Notifications: https:// www.macstories.net/news/castro-23-brings- podcast-triage-through-rich-notifications/