What s New in Notifications

Size: px
Start display at page:

Download "What s New in Notifications"

Transcription

1 System Frameworks #WWDC15 What s New in Notifications Session 720 Michele Campeotto ios Notifications Gokul Thirumalai Apple Push Notification Service 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

2 Today

3 Today ios Notifications

4 Today ios Notifications Silent Notifications

5 Today ios Notifications Silent Notifications User Notifications

6 Today ios Notifications Silent Notifications User Notifications Actions

7 Today ios Notifications Silent Notifications User Notifications Actions Text input New!

8 Today ios Notifications Silent Notifications User Notifications Actions Text input New! Apple Push Notification Service

9 Silent Notifications

10 Silent Notifications Notify the app

11 Silent Notifications Notify the app

12 Silent Notifications Notify the app { content-available: 1 }

13 Silent Notifications Notify the app { content-available: 1 } downloading

14 Silent Notifications Notify the app Enabled by default { content-available: 1 } downloading

15 Silent Notifications Notify the app Enabled by default Background App Refresh { content-available: 1 } downloading

16 Silent Notifications Notify the app Enabled by default Background App Refresh Best effort { content-available: 1 } downloading

17 User Notifications

18 User Notifications Notify the user

19 User Notifications Notify the user

20 User Notifications Notify the user

21 User Notifications Notify the user

22 User Notifications Notify the user

23 User Notifications Notify the user Require user permission

24 User Notifications Notify the user Require user permission

25 User Notifications Notify the user Require user permission Can be disabled

26 User Notifications Notify the user Require user permission Can be disabled

27 User Notifications

28 User Notifications Remote Notifications

29 User Notifications Remote Notifications

30 User Notifications Remote Notifications

31 User Notifications Remote Notifications { content-available: 1 }

32 User Notifications Remote Notifications Local Notifications

33 User Notifications Remote Notifications Local Notifications

34 User Notifications Remote Notifications Local Notifications

35 User Notifications Remote Notifications Local Notifications Time

36 User Notifications Remote Notifications Local Notifications Time Location

37 User Notifications Actions

38 User Notifications Actions Interactive Notifications

39 User Notifications Actions Interactive Notifications Categories

40 User Notifications Actions Interactive Notifications Categories

41 Apple Watch

42 Apple Watch

43 Apple Watch WatchKit In-Depth, Part 1 Pacific Heights Wednesday 9:00AM WatchKit In-Depth, Part 2 Pacific Heights Wednesday 10:00AM

44

45

46 User Notifications Text Input

47

48

49 Text Input Action New action

50 Text Input Action New action

51 Text Input Action New action Everywhere

52 Text Input Action New action Everywhere

53 Text Input Action New action Everywhere Multiple actions

54 Text Input Action New action Everywhere Multiple actions

55 Text Input Action Registering

56 Text Input Action Registering let replyaction = UIMutableUserNotificationAction() replyaction.title = "Reply" replyaction.identifier = "comment-reply" replyaction.activationmode =.Background replyaction.requiresauthentication = false replyaction.behavior =.TextInput

57 Text Input Action Registering let replyaction = UIMutableUserNotificationAction() replyaction.title = "Reply" replyaction.identifier = "comment-reply" replyaction.activationmode =.Background replyaction.requiresauthentication = false replyaction.behavior =.TextInput

58 Text Input Action Registering

59 Text Input Action Registering let category = UIMutableUserNotificationCategory() category.identifier = "reply" category.actions = [ replyaction ]

60 Text Input Action Registering let category = UIMutableUserNotificationCategory() category.identifier = "reply" category.actions = [ replyaction ] let settings = UIUserNotificationSettings(forTypes: [.Sound,.Alert ], categories: [ category ])

61 Text Input Action Registering let category = UIMutableUserNotificationCategory() category.identifier = "reply" category.actions = [ replyaction ] let settings = UIUserNotificationSettings(forTypes: [.Sound,.Alert ], categories: [ category ]) UIApplication.sharedApplication().registerUserNotificationSettings(settings)

62 Text Input Action Receiving protocol UIApplicationDelegate { func application(application: UIApplication, handleactionwithidentifier identifier: String?, forremotenotification notification: [ NSObject : AnyObject ], withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) }

63 Text Input Action Receiving protocol UIApplicationDelegate { func application(application: UIApplication, handleactionwithidentifier identifier: String?, forremotenotification notification: [ NSObject : AnyObject ], withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) }

64 Text Input Action Receiving protocol UIApplicationDelegate { func application(application: UIApplication, handleactionwithidentifier identifier: String?, forlocalnotification notification: UILocalNotification, withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) }

65 Text Input Action Receiving protocol UIApplicationDelegate { func application(application: UIApplication, handleactionwithidentifier identifier: String?, forlocalnotification notification: UILocalNotification, withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) }

66 Text Input Action Handling the response func application(application: UIApplication, handleactionwithidentifier identifier: String?, forlocalnotification notification: UILocalNotification, withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) { if identifier == "comment-reply", let response = responseinfo[uiusernotificationactionresponsetypedtextkey], responsetext = response as? String { viewcontroller.appendtext(responsetext) } } } completionhandler()

67 Text Input Action Handling the response func application(application: UIApplication, handleactionwithidentifier identifier: String?, forlocalnotification notification: UILocalNotification, withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) { if identifier == "comment-reply", let response = responseinfo[uiusernotificationactionresponsetypedtextkey], responsetext = response as? String { viewcontroller.appendtext(responsetext) } } } completionhandler()

68 Text Input Action Handling the response func application(application: UIApplication, handleactionwithidentifier identifier: String?, forlocalnotification notification: UILocalNotification, withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) { if identifier == "comment-reply", let response = responseinfo[uiusernotificationactionresponsetypedtextkey], responsetext = response as? String { viewcontroller.appendtext(responsetext) } } } completionhandler()

69 Text Input Action Handling the response func application(application: UIApplication, handleactionwithidentifier identifier: String?, forlocalnotification notification: UILocalNotification, withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) { if identifier == "comment-reply", let response = responseinfo[uiusernotificationactionresponsetypedtextkey], responsetext = response as? String { viewcontroller.appendtext(responsetext) } } } completionhandler()

70 Text Input Action Handling the response func application(application: UIApplication, handleactionwithidentifier identifier: String?, forlocalnotification notification: UILocalNotification, withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) { if identifier == "comment-reply", let response = responseinfo[uiusernotificationactionresponsetypedtextkey], responsetext = response as? String { viewcontroller.appendtext(responsetext) } } } completionhandler()

71 Text Input Action Handling the response func application(application: UIApplication, handleactionwithidentifier identifier: String?, forlocalnotification notification: UILocalNotification, withresponseinfo responseinfo: [ NSObject : AnyObject ], completionhandler completionhandler: () -> Void) { if identifier == "comment-reply", let response = responseinfo[uiusernotificationactionresponsetypedtextkey], responsetext = response as? String { viewcontroller.appendtext(responsetext) } } } completionhandler()

72 Apple Watch

73 Apple Watch

74 Apple Watch WatchKit In-Depth, Part 1 Pacific Heights Wednesday 9:00AM WatchKit In-Depth, Part 2 Pacific Heights Wednesday 10:00AM

75 One More Thing

76 One More Thing ios 8 compatibility

77 Summary

78 Summary ios Notifications

79 Summary ios Notifications Silent Notifications

80 Summary ios Notifications Silent Notifications User Notifications

81 Summary ios Notifications Silent Notifications User Notifications Actions

82 Summary ios Notifications Silent Notifications User Notifications Actions Text input New!

83 Summary ios Notifications Silent Notifications User Notifications Actions Text input New! Apple Watch

84 Apple Push Notification Service Gokul Thirumalai Apple Push Notification Service

85 Apple Push Notification Service Review New Provider API

86 Flow APNS Provider Client App

87 Flow APNS Provider Client App

88 Flow APNS Provider Client App

89 Flow APNS Provider Client App

90 Flow APNS Provider Client App

91 Flow APNS Provider Client App

92 Feedback APNS Feedback APNS Provider

93 Feedback APNS Feedback APNS Provider

94 Feedback APNS Feedback APNS Provider

95 Feedback APNS Feedback APNS Provider

96 Feedback APNS Feedback APNS Provider

97 Large Device Tokens Coming in 2016

98 New Provider API

99

100 HTTP/2

101 HTTP/2

102 HTTP/2 Request-response

103 HTTP/2 Request-response Multiplexed

104 HTTP/2 Request-response Multiplexed Binary

105 Flow APNS Provider Client App

106 Flow APNS HTTP/2 Provider Client App

107 HTTP/2 Provider API Connection APNS Provider

108 HTTP/2 Provider API Connection APNS Provider

109 HTTP/2 Provider API Connection SETTINGS APNS Provider

110 HTTP/2 Provider API Request APNS Provider

111 HTTP/2 Provider API Request POST APNS Provider

112 HTTP/2 Provider API Request POST POST POST APNS Provider

113 HTTP/2 Provider API Response APNS Provider

114 HTTP/2 Provider API Response 200 OK APNS Provider

115 HTTP/2 Provider API Response 400 BAD REQUEST APNS { reason :... } Provider

116 HTTP/2 Provider API Request example HEADERS - END_STREAM + END_HEADERS :authority = api.push.apple.com :method = POST :path = /3/device/ad2bcd38f6773cdad content-length = 41 apns-id = de305d54-75b4-431b-adb2-eb6b9e apns-expiration = 0 DATA + END_STREAM { "aps" : { "alert" : "Hello HTTP/2" } }

117 HTTP/2 Provider API Request example HEADERS - END_STREAM + END_HEADERS :authority = api.push.apple.com :method = POST :path = /3/device/ad2bcd38f6773cdad content-length = 41 apns-id = de305d54-75b4-431b-adb2-eb6b9e apns-expiration = 0 DATA + END_STREAM { "aps" : { "alert" : "Hello HTTP/2" } }

118 HTTP/2 Provider API Request example HEADERS - END_STREAM + END_HEADERS :authority = api.push.apple.com :method = POST :path = /3/device/ad2bcd38f6773cdad content-length = 41 apns-id = de305d54-75b4-431b-adb2-eb6b9e apns-expiration = 0 DATA + END_STREAM { "aps" : { "alert" : "Hello HTTP/2" } }

119 HTTP/2 Provider API Request example HEADERS - END_STREAM + END_HEADERS :authority = api.push.apple.com :method = POST :path = /3/device/ad2bcd38f6773cdad content-length = 41 apns-id = de305d54-75b4-431b-adb2-eb6b9e apns-expiration = 0 DATA + END_STREAM { "aps" : { "alert" : "Hello HTTP/2" } }

120 HTTP/2 Provider API Request example HEADERS - END_STREAM + END_HEADERS :authority = api.push.apple.com :method = POST :path = /3/device/ad2bcd38f6773cdad content-length = 41 apns-id = de305d54-75b4-431b-adb2-eb6b9e apns-expiration = 0 DATA + END_STREAM { "aps" : { "alert" : "Hello HTTP/2" } }

121 HTTP/2 Provider API Response example HEADERS + END_STREAM + END_HEADERS :status = 200

122 HTTP/2 Provider API Response example HEADERS - END_STREAM + END_HEADERS :status = 400 content-type = application/json content-length = 31 DATA + END_STREAM { "reason": "BadDeviceToken" }

123 HTTP/2 Provider API Response example HEADERS - END_STREAM + END_HEADERS :status = 400 content-type = application/json content-length = 31 DATA + END_STREAM { "reason": "BadDeviceToken" }

124 HTTP/2 Provider API Response example HEADERS - END_STREAM + END_HEADERS :status = 400 content-type = application/json content-length = 31 DATA + END_STREAM { "reason": "BadDeviceToken" }

125 HTTP/2 Provider API Response example HEADERS - END_STREAM + END_HEADERS :status = 400 content-type = application/json content-length = 31 DATA + END_STREAM { "reason": "BadDeviceToken" }

126

127 Instant Feedback

128 Instant Feedback APNS Feedback APNS Provider

129 Instant Feedback APNS Provider

130 Instant Feedback APNS Request Feedback in Response Provider

131 Instant Feedback Response example HEADERS - END_STREAM + END_HEADERS :status = 410 content-type = application/json content-length = 48 DATA + END_STREAM { "timestamp": }

132 Instant Feedback Response example HEADERS - END_STREAM + END_HEADERS :status = 410 content-type = application/json content-length = 48 DATA + END_STREAM { "timestamp": }

133 Simplified Certificate Handling

134 Simplified Certificate Handling

135 Simplified Certificate Handling Application push

136 Simplified Certificate Handling Application push VOIP push

137 Simplified Certificate Handling Application push VOIP push Watch Complication push

138 Simplified Certificate Handling Application push VOIP push Watch Complication push Development and production environments

139 Simplified Certificate Handling Application push VOIP push Watch Complication push Development and production environments One Certificate

140 2KB

141 4 KB

142 New Provider API Review HTTP/2 request-response Instant feedback Simplified certificate handling 4KB

143 More Information Documentation Technical Support Apple Developer Forums Developer Technical Support General Inquiries Paul Danbold, Core OS Evangelist

144 Related Sessions Creating Complications with ClockKit Pacific Heights Wednesday 11:00AM Networking with NSURLSession Pacific Heights Thursday 9:00AM Introducing Watch Connectivity Pacific Heights Thursday 11:00AM

145 Related Labs Notifications Lab Frameworks Lab E Friday 2:30PM

146

Monetize and Promote Your App with iad

Monetize and Promote Your App with iad Media #WWDC15 Monetize and Promote Your App with iad From design to launch Session 503 Carol Teng Shashank Phadke 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Enhancing your apps for the next dimension of touch

Enhancing your apps for the next dimension of touch App Frameworks #WWDC16 A Peek at 3D Touch Enhancing your apps for the next dimension of touch Session 228 Tyler Fox UIKit Frameworks Engineer Peter Hajas UIKit Frameworks Engineer 2016 Apple Inc. All rights

More information

Seamless Linking to Your App

Seamless Linking to Your App App Frameworks #WWDC15 Seamless Linking to Your App Session 509 Conrad Shultz Safari and WebKit Software Engineer Jonathan Grynspan Core Services Software Engineer 2015 Apple Inc. All rights reserved.

More information

Building Watch Apps #WWDC15. Featured. Session 108. Neil Desai watchos Engineer

Building Watch Apps #WWDC15. Featured. Session 108. Neil Desai watchos Engineer Featured #WWDC15 Building Watch Apps Session 108 Neil Desai watchos Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. Agenda

More information

Creating Complications with ClockKit Session 209

Creating Complications with ClockKit Session 209 App Frameworks #WWDC15 Creating Complications with ClockKit Session 209 Eliza Block watchos Engineer Paul Salzman watchos Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display

More information

Quick Interaction Techniques for watchos

Quick Interaction Techniques for watchos App Frameworks #WWDC16 Quick Interaction Techniques for watchos Session 211 Tom Witkin watchos Engineer Miguel Sanchez watchos Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display

More information

CloudKit Tips And Tricks

CloudKit Tips And Tricks System Frameworks #WWDC15 CloudKit Tips And Tricks Session 715 Nihar Sharma CloudKit Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

WatchKit In-Depth, Part 2

WatchKit In-Depth, Part 2 App Frameworks #WWDC15 WatchKit In-Depth, Part 2 Session 208 Nathan de Vries watchos Engineer Chloe Chang watchos Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

Multitasking Support on the ios Platform

Multitasking Support on the ios Platform Multitasking Support on the ios Platform Priya Rajagopal Invicara (www.invicara.com) @rajagp Multitasking on ios? Multitasking allows apps to perform certain tasks in the background while you're using

More information

Using Grouped Notifications

Using Grouped Notifications #WWDC18 Using Grouped Notifications Session 711 Michele Campeotto, ios User Notifications 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Networking with NSURLSession

Networking with NSURLSession System Frameworks #WWDC15 Networking with NSURLSession Session 711 Luke Case Software Engineer Andreas Garkuscha Software Engineer Dan Vinegrad Software Engineer 2015 Apple Inc. All rights reserved. Redistribution

More information

ios Accessibility Developing for everyone Session 201 Ian Fisch ios Accessibility

ios Accessibility Developing for everyone Session 201 Ian Fisch ios Accessibility App Frameworks #WWDC15 ios Accessibility Developing for everyone Session 201 Ian Fisch ios Accessibility 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

What s New in CloudKit

What s New in CloudKit System Frameworks #WWDC15 What s New in CloudKit Session 704 Olivier Bonnet icloud Client Eric Krugler icloud Server 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

Designing for Apple Watch

Designing for Apple Watch Design #WWDC15 Designing for Apple Watch Session 802 Mike Stern User Experience Evangelist 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Getting the Most Out of HealthKit

Getting the Most Out of HealthKit App Frameworks #WWDC16 Getting the Most Out of HealthKit What s new and best practices Session 209 Matthew Salesi ios Software Engineer Joefrey Kibuule ios Software Engineer 2016 Apple Inc. All rights

More information

App Extension Best Practices

App Extension Best Practices App Frameworks #WWDC15 App Extension Best Practices Session 224 Sophia Teutschler UIKit Engineer Ian Baird CoreOS Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

Using and Extending the Xcode Source Editor

Using and Extending the Xcode Source Editor Developer Tools #WWDC16 Using and Extending the Xcode Source Editor Session 414 Mike Swingler Xcode Infrastructure and Editors Chris Hanson Xcode Infrastructure and Editors 2016 Apple Inc. All rights reserved.

More information

What s New in Xcode App Signing

What s New in Xcode App Signing Developer Tools #WWDC16 What s New in Xcode App Signing Developing and distributing Session 401 Joshua Pennington Tools Engineering Manager Itai Rom Tools Engineer 2016 Apple Inc. All rights reserved.

More information

Apple Watch Design Tips and Tricks

Apple Watch Design Tips and Tricks Design #WWDC15 Apple Watch Design Tips and Tricks Session 805 Mike Stern User Experience Evangelist Rachel Roth User Experience Evangelist 2015 Apple Inc. All rights reserved. Redistribution or public

More information

Introducing On Demand Resources

Introducing On Demand Resources App Frameworks #WWDC15 Introducing On Demand Resources An element of App Thinning Session 214 Steve Lewallen Frameworks Engineering Tony Parker Cocoa Frameworks 2015 Apple Inc. All rights reserved. Redistribution

More information

Advanced Notifications

Advanced Notifications System Frameworks #WWDC16 Advanced Notifications Session 708 Michele Campeotto ios Notifications 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Data Delivery with Drag and Drop

Data Delivery with Drag and Drop Session App Frameworks #WWDC17 Data Delivery with Drag and Drop 227 Dave Rahardja, UIKit Tanu Singhal, UIKit 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Accessibility on OS X

Accessibility on OS X Frameworks #WWDC14 Accessibility on OS X New Accessibility API Session 207 Patti Hoa Accessibility Engineer! Chris Dolan Accessibility Engineer 2014 Apple Inc. All rights reserved. Redistribution or public

More information

Accessibility on ios. Developing for everyone. Frameworks #WWDC14. Session 210 Clare Kasemset ios Accessibility

Accessibility on ios. Developing for everyone. Frameworks #WWDC14. Session 210 Clare Kasemset ios Accessibility Frameworks #WWDC14 Accessibility on ios Developing for everyone Session 210 Clare Kasemset ios Accessibility 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

What s New in watchos

What s New in watchos Session App Frameworks #WWDC17 What s New in watchos 205 Ian Parks, watchos Engineering 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

Introducing the Contacts Framework

Introducing the Contacts Framework App Frameworks #WWDC15 Introducing the Contacts Framework For OS X, ios, and watchos Session 223 Bruce Stadnyk ios Contacts Engineer Dave Dribin OS X Contacts Engineer Julien Robert ios Contacts Engineer

More information

Designing Great Apple Watch Experiences

Designing Great Apple Watch Experiences Design #WWDC16 Designing Great Apple Watch Experiences Session 804 Mike Stern User Experience Evangelist 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Cocoa Touch Best Practices

Cocoa Touch Best Practices App Frameworks #WWDC15 Cocoa Touch Best Practices Session 231 Luke Hiesterman UIKit Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Cross Platform Nearby Networking

Cross Platform Nearby Networking Core OS #WWDC14 Cross Platform Nearby Networking Session 709 Demijan Klinc Software Engineer 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

What s New in HomeKit

What s New in HomeKit App Frameworks #WWDC15 What s New in HomeKit Session 210 Anush Nadathur HomeKit Engineer Naveen Kommareddi HomeKit Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

What s New in NSCollectionView Session 225

What s New in NSCollectionView Session 225 App Frameworks #WWDC15 What s New in NSCollectionView Session 225 Troy Stephens Application Frameworks Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Advanced Scrollviews and Touch Handling Techniques

Advanced Scrollviews and Touch Handling Techniques Frameworks #WWDC14 Advanced Scrollviews and Touch Handling Techniques Session 235 Josh Shaffer ios Apps and Frameworks Engineer Eliza Block ios Apps and Frameworks Engineer 2014 Apple Inc. All rights reserved.

More information

Introduction to Siri Shortcuts

Introduction to Siri Shortcuts #WWDC8 Introduction to Siri Shortcuts Session 2 Ari Weinstein, Siri Willem Mattelaer, Siri 208 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Mysteries of Auto Layout, Part 1

Mysteries of Auto Layout, Part 1 App Frameworks #WWDC15 Mysteries of Auto Layout, Part 1 Session 218 Jason Yao Interface Builder Engineer Kasia Wawer ios Keyboards Engineer 2015 Apple Inc. All rights reserved. Redistribution or public

More information

Advances in AVFoundation Playback

Advances in AVFoundation Playback Media #WWDC16 Advances in AVFoundation Playback Waiting, looping, switching, widening, optimizing Session 503 Sam Bushell Media Systems Architect 2016 Apple Inc. All rights reserved. Redistribution or

More information

iphone Application Programming Networking

iphone Application Programming Networking iphone Application Programming Networking RWTH Aachen University WS 2015/16 http://hci.rwth-aachen.de/iphone Networking on ios There are many ways to network Think about what you need to do first Then

More information

Media and Gaming Accessibility

Media and Gaming Accessibility Session System Frameworks #WWDC17 Media and Gaming Accessibility 217 Greg Hughes, Software Engineering Manager Charlotte Hill, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or public

More information

Writing Energy Efficient Apps

Writing Energy Efficient Apps Session App Frameworks #WWDC17 Writing Energy Efficient Apps 238 Daniel Schucker, Software Power Engineer Prajakta Karandikar, Software Power Engineer 2017 Apple Inc. All rights reserved. Redistribution

More information

Creating Audio Apps for watchos

Creating Audio Apps for watchos Session #WWDC18 Creating Audio Apps for watchos 504 Neil Desai, watchos Frameworks Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

What s New in Core Location

What s New in Core Location Core OS What s New in Core Location Session 706 Stephen Rhee Engineering Manager 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

More information

Extending Your Apps with SiriKit

Extending Your Apps with SiriKit App Frameworks #WWDC16 Extending Your Apps with SiriKit Session 225 Vineet Khosla SiriKit Engineering Diana Huang SiriKit Engineering Scott Andrus SiriKit Engineering 2016 Apple Inc. All rights reserved.

More information

What's New in Foundation Networking

What's New in Foundation Networking Core OS #WWDC14 What's New in Foundation Networking Session 707 Steve Algernon Senior Wrangler 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

CarPlay Audio and Navigation Apps

CarPlay Audio and Navigation Apps #WWDC18 CarPlay Audio and Navigation Apps Tunes and turns Jonathan Hersh, ios Car Experience Albert Wan, ios Car Experience Mike Knippers, ios Car Experience 2018 Apple Inc. All rights reserved. Redistribution

More information

Introducing the Photos Frameworks

Introducing the Photos Frameworks Media #WWDC14 Introducing the Photos Frameworks Session 511 Adam Swift ios Photos Frameworks 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

What s New in tvos #WWDC16. App Frameworks. Session 206. Hans Kim tvos Engineer

What s New in tvos #WWDC16. App Frameworks. Session 206. Hans Kim tvos Engineer App Frameworks #WWDC16 What s New in tvos Session 206 Hans Kim tvos Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. Welcome

More information

Mastering Xcode for iphone OS Development Part 2. Marc Verstaen Sr. Manager, iphone Tools

Mastering Xcode for iphone OS Development Part 2. Marc Verstaen Sr. Manager, iphone Tools Mastering Xcode for iphone OS Development Part 2 Marc Verstaen Sr. Manager, iphone Tools 2 Tale of Two Sessions Part 1: Orientation: Tour of complete development cycle Part 2: Mastery: Details of several

More information

Introducing the Modern WebKit API

Introducing the Modern WebKit API Frameworks #WWDC14 Introducing the Modern WebKit API Session 206 Anders Carlsson Safari and WebKit Engineer 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Core ML in Depth. System Frameworks #WWDC17. Krishna Sridhar, Core ML Zach Nation, Core ML

Core ML in Depth. System Frameworks #WWDC17. Krishna Sridhar, Core ML Zach Nation, Core ML System Frameworks #WWDC17 Core ML in Depth Krishna Sridhar, Core ML Zach Nation, Core ML 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

Power, Performance, and Diagnostics

Power, Performance, and Diagnostics Core OS #WWDC14 Power, Performance, and Diagnostics What's new in GCD and XPC Session 716 Daniel Steffen Darwin Runtime Engineer 2014 Apple Inc. All rights reserved. Redistribution or public display not

More information

Creating Great App Previews

Creating Great App Previews Services #WWDC14 Creating Great App Previews Session 304 Paul Turner Sr. Operations Manager itunes Digital Supply Chain Engineering 2014 Apple Inc. All rights reserved. Redistribution or public display

More information

Mastering Xcode for iphone OS Development Part 1. Todd Fernandez Sr. Manager, IDEs

Mastering Xcode for iphone OS Development Part 1. Todd Fernandez Sr. Manager, IDEs Mastering Xcode for iphone OS Development Part 1 Todd Fernandez Sr. Manager, IDEs 2 3 Customer Reviews Write a Review Current Version (1) All Versions (24) Gorgeous and Addictive Report a Concern by Play

More information

Introducing SiriKit. Hey Siri, say hello to apps #WWDC16. App Frameworks. Session 217

Introducing SiriKit. Hey Siri, say hello to apps #WWDC16. App Frameworks. Session 217 App Frameworks #WWDC16 Introducing SiriKit Hey Siri, say hello to apps Session 217 Robby Walker SiriKit Engineering Brandon Newendorp SiriKit Engineering Corey Peterson SiriKit Design 2016 Apple Inc. All

More information

What s New in Core Data?

What s New in Core Data? Session App Frameworks #WWDC17 What s New in Core? Persisting since 2004 210 Melissa Turner, Core Engineer Rishi Verma, Core Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display

More information

Swift API Design Guidelines

Swift API Design Guidelines Developer Tools #WWDC16 Swift API Design Guidelines The Grand Renaming Session 403 Doug Gregor Swift Engineer Michael Ilseman Swift Engineer 2016 Apple Inc. All rights reserved. Redistribution or public

More information

Introducing Search APIs

Introducing Search APIs System Frameworks #WWDC15 Introducing Search APIs Increase app usage and discoverability Session 709 Vipul Ved Prakash Siri Dave Salim Siri Jason Douglas Siri 2015 Apple Inc. All rights reserved. Redistribution

More information

What s New in Energy Debugging

What s New in Energy Debugging #WWDC18 What s New in Energy Debugging Phillip Azar, Apple/Battery Life David Choi, Apple/Battery Life 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

What s New in SiriKit

What s New in SiriKit Session App Frameworks #WWDC17 What s New in SiriKit 214 Sirisha Yerroju, SiriKit Engineer Tin Tran, SiriKit Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

Writing Great Alerts. Design #WWDC17. Natalie Calvert, Designer

Writing Great Alerts. Design #WWDC17. Natalie Calvert, Designer Session Design #WWDC17 Writing Great Alerts 813 Natalie Calvert, Designer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. When

More information

Introducing Password AutoFill for Apps

Introducing Password AutoFill for Apps Session App Frameworks #WWDC17 Introducing Password AutoFill for Apps Reducing friction for your users 206 Ricky Mondello, ios Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display

More information

Mastering UIKit on tvos

Mastering UIKit on tvos App Frameworks #WWDC16 Mastering UIKit on tvos Session 210 Justin Voss UIKit Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

Implementing UI Designs in Interface Builder

Implementing UI Designs in Interface Builder Developer Tools #WWDC15 Implementing UI Designs in Interface Builder Session 407 Kevin Cathey Interface Builder Engineer Tony Ricciardi Interface Builder Engineer 2015 Apple Inc. All rights reserved. Redistribution

More information

Mastering Drag and Drop

Mastering Drag and Drop Session App Frameworks #WWDC17 Mastering Drag and Drop 213 Tom Adriaenssen, UIKit Wenson Hsieh, WebKit Robb Böhnke, UIKit 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

Building for Voice with Siri Shortcuts

Building for Voice with Siri Shortcuts #WWDC18 Building for Voice with Siri Shortcuts Session 214 Amit Jain, Siri Ayaka Nonaka, Siri 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

What s New in tvos 12

What s New in tvos 12 #WWDC18 What s New in tvos 12 Session 208 Hans Kim, tvos Engineering 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. Agenda Agenda

More information

What s New in imessage Apps

What s New in imessage Apps Session App Frameworks #WWDC17 What s New in imessage Apps 234 Eugene Bistolas, Messages Engineer Jay Chae, Messages Engineer Stephen Lottermoser, Messages Engineer 2017 Apple Inc. All rights reserved.

More information

View Controller Advancements for ios8

View Controller Advancements for ios8 Frameworks #WWDC14 View Controller Advancements for ios8 Session 214 Bruce D. Nilo Manager, UIKit Fundamentals 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Notification Services

Notification Services , page 1 Service Option Configuration, page 9 Notification in Policy Builder relates to pushing messages from Policy Builder to subscribers. Service Providers can use messages to alert the subscriber to

More information

Mobile Application Programing: ios. Messaging

Mobile Application Programing: ios. Messaging Mobile Application Programing: ios Messaging Application Model View Controller (MVC) Application Controller User Action Update View Notify Update Model Messaging Controller User Action Update Notify Update

More information

What's New in Core Spotlight

What's New in Core Spotlight Session System Frameworks #WWDC17 What's New in Core Spotlight Search on macos and ios 231 John Hörnkvist, Spotlight Lyn Fong, Spotlight 2017 Apple Inc. All rights reserved. Redistribution or public display

More information

Introducing MusicKit. Media #WWDC17. Tim Parthemore, MusicKit Services Joel Lopes Da Silva, ios Music

Introducing MusicKit. Media #WWDC17. Tim Parthemore, MusicKit Services Joel Lopes Da Silva, ios Music Session Media #WWDC17 Introducing MusicKit 502 Tim Parthemore, MusicKit Services Joel Lopes Da Silva, ios Music 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Building Faster in Xcode

Building Faster in Xcode #WWDC18 Building Faster in Xcode Session 408 David Owens, Xcode Engineer Jordan Rose, Swift Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Introducing CloudKit. A how-to guide for icloud for your Apps. Frameworks #WWDC14. Session 208 Olivier Bonnet CloudKit Client Software

Introducing CloudKit. A how-to guide for icloud for your Apps. Frameworks #WWDC14. Session 208 Olivier Bonnet CloudKit Client Software Frameworks #WWDC14 Introducing CloudKit A how-to guide for icloud for your Apps Session 208 Olivier Bonnet CloudKit Client Software 2014 Apple Inc. All rights reserved. Redistribution or public display

More information

What s New in Testing

What s New in Testing #WWDC18 What s New in Testing Session 403 Honza Dvorsky, Xcode Engineer Ethan Vaughan, Xcode Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

imessage Apps and Stickers, Part 2

imessage Apps and Stickers, Part 2 App Frameworks #WWDC16 imessage Apps and Stickers, Part 2 Interactive Messages Session 224 Alex Carter Messages Engineer Stephen Lottermoser Messages Engineer 2016 Apple Inc. All rights reserved. Redistribution

More information

New UIKit Support for International User Interfaces

New UIKit Support for International User Interfaces App Frameworks #WWDC15 New UIKit Support for International User Interfaces Session 222 Sara Radi Internationalization Software Engineer Aaltan Ahmad Internationalization Software Engineer Paul Borokhov

More information

VMware AirWatch SDK for ios (Swift) v17.5. Technical Implementation Guide Empowering your enterprise applications with MDM capabilities

VMware AirWatch SDK for ios (Swift) v17.5. Technical Implementation Guide Empowering your enterprise applications with MDM capabilities VMware AirWatch SDK for ios (Swift) Technical Implementation Guide Empowering your enterprise applications with MDM capabilities VMware AirWatch SDK for ios (Swift) v17.5 Have documentation feedback? Submit

More information

New Ways to Work with Workouts

New Ways to Work with Workouts Session #WWDC18 New Ways to Work with Workouts 707 Niharika Bedekar, Fitness Software Engineer Karim Benhmida, Health Software Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display

More information

WBSCM Forums: a. Click on the Home tab in the upper left-hand portion of the screen.

WBSCM Forums: a. Click on the Home tab in the upper left-hand portion of the screen. WBSCM Forums: WBSCM allows you to set up notification settings, so you will receive an email message when a new item is posted. You can identify one or more specific forums, threads, and/or users to follow.

More information

Pass Distribution APIs User Guide

Pass Distribution APIs User Guide MicroMacro Mobile Inc Pass Distribution APIs User Guide V 2.0.3 2017-08-03 Version History Version UpdatedAt te v 2.0.1 2015-06-16 v 2.0.2 2016-04-14 v 2.0.3 2017-08-03 Add support for Create a pass API,

More information

What's New in UIKit Dynamics and Visual Effects Session 229

What's New in UIKit Dynamics and Visual Effects Session 229 App Frameworks #WWDC15 What's New in UIKit Dynamics and Visual Effects Session 229 Michael Turner UIKit Engineer David Duncan UIKit Engineer 2015 Apple Inc. All rights reserved. Redistribution or public

More information

Content Protection for HTTP Live Streaming

Content Protection for HTTP Live Streaming Media #WWDC15 Content Protection for HTTP Live Streaming Session 502 Roger Pantos HTTP Live Streaming Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

What s New in Cocoa for macos

What s New in Cocoa for macos Session #WWDC18 What s New in Cocoa for macos 209 Ali Ozer, Cocoa Frameworks Chris Dreessen, Cocoa Frameworks Jesse Donaldson, Cocoa Frameworks 2018 Apple Inc. All rights reserved. Redistribution or public

More information

Notifications. Mobile Application Development in ios School of EECS Washington State University Instructor: Larry Holder

Notifications. Mobile Application Development in ios School of EECS Washington State University Instructor: Larry Holder Notifications Mobile Application Development in ios School of EECS Washington State University Instructor: Larry Holder Mobile Application Development in ios 1 Outline Alerts Internal notifications Local

More information

Profiling in Depth. Do you know where your code is? Session 412. Kris Markel Performance Tools Engineer Chad Woolf Performance Tools Engineer

Profiling in Depth. Do you know where your code is? Session 412. Kris Markel Performance Tools Engineer Chad Woolf Performance Tools Engineer Developer Tools #WWDC15 Profiling in Depth Do you know where your code is? Session 412 Kris Markel Performance Tools Engineer Chad Woolf Performance Tools Engineer 2015 Apple Inc. All rights reserved.

More information

Modern User Interaction on ios

Modern User Interaction on ios App Frameworks #WWDC17 Modern User Interaction on ios Mastering the UIKit UIGesture System Session 219 Dominik Wagner, UIKit Engineer Michael Turner, UIKit Engineer Glen Low, UIKit Engineer 2017 Apple

More information

What s New in LLDB. Debug your way to fame and glory #WWDC15. Developer Tools. Session 402

What s New in LLDB. Debug your way to fame and glory #WWDC15. Developer Tools. Session 402 Developer Tools #WWDC15 What s New in LLDB Debug your way to fame and glory Session 402 Kate Stone Software Behavioralist Sean Callanan Master of Expressions Enrico Granata Data Wizard 2015 Apple Inc.

More information

What s New in MapKit. App Frameworks #WWDC17. Fredrik Olsson

What s New in MapKit. App Frameworks #WWDC17. Fredrik Olsson Session App Frameworks #WWDC17 What s New in MapKit 237 Fredrik Olsson 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. MKMapView.mapType.standard

More information

Advanced Debugging and the Address Sanitizer

Advanced Debugging and the Address Sanitizer Developer Tools #WWDC15 Advanced Debugging and the Address Sanitizer Finding your undocumented features Session 413 Mike Swingler Xcode UI Infrastructure Anna Zaks LLVM Program Analysis 2015 Apple Inc.

More information

Introducing Swift Playgrounds

Introducing Swift Playgrounds Developer Tools #WWDC16 Introducing Swift Playgrounds Exploring with Swift on ipad Session 408 Matt Patenaude Playgrounds Engineer Maxwell Swadling Playgrounds Engineer Jonathan Penn Playgrounds Engineer

More information

VMware Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments

VMware  Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments VMware Email Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments Workspace ONE UEM v9.5 Have documentation feedback? Submit a Documentation

More information

Touch Bar Fundamentals

Touch Bar Fundamentals Session App Frameworks #WWDC17 Touch Bar Fundamentals 211 Chris Dreessen John Tegtmeyer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

Enabling Your App for CarPlay

Enabling Your App for CarPlay Session App Frameworks #WWDC17 Enabling Your App for CarPlay 719 Albert Wan, CarPlay Engineering 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

itunes Connect Development to distribution #WWDC15 Distribution Session 304

itunes Connect Development to distribution #WWDC15 Distribution Session 304 Distribution #WWDC15 itunes Connect Development to distribution Session 304 Paul Turner Senior Engineering Operations Manager, itunes Digital Supply Chain 2015 Apple Inc. All rights reserved. Redistribution

More information

INSITES CONNECT ADMINISTRATION GUIDE. Version 1.4.3

INSITES CONNECT ADMINISTRATION GUIDE. Version 1.4.3 INSITES CONNECT ADMINISTRATION GUIDE Version 1.4.3 CONTENTS GETTING STARTED... 2 Version Compatibility... 2 Installing the InSites Connect app... 2 APP CONFIGURATION... 4 CONFIGURING PUSH NOTIFICATIONS...

More information

Address Book for iphone

Address Book for iphone Address Book for iphone The people s framework Alexandre Aybes iphone Software Engineer 2 3 Address Book for iphone The people s framework Alexandre Aybes iphone Software Engineer 4 What We Will Cover

More information

Moxie Notifications Documentation

Moxie Notifications Documentation Moxie Notifications Documentation Release 0.1 Mobile Oxford team, IT Services, University of Oxford April 23, 2014 Contents i ii CHAPTER 1 HTTP API 1.1 Endpoint 1.1.1 Format Dates are expressed as YYYY-mm-DDTHH:mm:ss

More information

VMware Notification Service v2.0 Installation and Configuration Guide Configure ENSv2 for cloud and on-premises deployments

VMware  Notification Service v2.0 Installation and Configuration Guide Configure ENSv2 for cloud and on-premises deployments VMware Email Notification Service v2.0 Installation and Configuration Guide Configure ENSv2 for cloud and on-premises deployments Workspace ONE UEM v9.4 Have documentation feedback? Submit a Documentation

More information

VMware Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments

VMware  Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments VMware Email Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments Workspace ONE UEM v9.7 Have documentation feedback? Submit a Documentation

More information

Creating Extensions for Safari

Creating Extensions for Safari Creating Extensions for Safari Part One Timothy Hatcher Safari and WebKit Engineer 2 3 HTML5 CSS3 JavaScript Native Code 4 Cross Platform Secure Crashes 5 What You ll Learn When to make a Safari Extension

More information

VMware Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments

VMware  Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments VMware Email Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments Workspace ONE UEM v1810 Have documentation feedback? Submit a Documentation

More information