Building for Voice with Siri Shortcuts

Size: px
Start display at page:

Download "Building for Voice with Siri Shortcuts"

Transcription

1 #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 from Apple.

2

3 Adding shortcuts to Siri Custom responses Best practices for shortcuts Bringing shortcuts into your app

4 Adding shortcuts to Siri Custom responses Best practices for shortcuts Bringing shortcuts into your app

5 Adding shortcuts to Siri Custom responses Best practices for shortcuts Bringing shortcuts into your app

6 Adding shortcuts to Siri Custom responses Best practices for shortcuts Bringing shortcuts into your app

7 Adding Shortcuts to Siri

8

9

10

11 Soup time

12

13

14

15

16

17 Custom Responses NEW

18 Types of custom responses Confirmation Success Informational Error

19 Types of custom responses Confirmation Bean says: Your coffee will be $4.95. Ready to order?

20 Types of custom responses Success Bean says: You can pick up your latte in 10 minutes.

21 Types of custom responses Information Commute says: 35 Eureka will be at the Castro and 17th stop in 4 minutes.

22 Types of custom responses Error Something went wrong. Bean says, The Cupertino store is currently closed. You can continue in the app.

23 Adopting Custom Responses

24 Adopting Custom Responses Defining a custom response Define a custom intent

25

26 Adopting Custom Responses Defining a custom response Define a custom intent

27 Adopting Custom Responses Defining a custom response Define a custom intent Select a category for your intent

28

29

30 Adopting Custom Responses Defining a custom response Define a custom intent Select a category for your intent

31 Adopting Custom Responses Defining a custom response Define a custom intent Select a category for your intent Declare response properties

32

33

34

35 Adopting Custom Responses Defining a custom response Define a custom intent Select a category for your intent Declare response properties

36 Adopting Custom Responses Defining a custom response Define a custom intent Select a category for your intent Declare response properties Provide a response template string

37

38

39

40

41 // Custom response object public class OrderSoupIntentResponse : INIntentResponse { public var waittime: String? { get set } public var soup: INObject? { get set } public convenience init(code: OrderSoupIntentResponseCode, useractivity: NSUserActivity?) public static func success(soup: INObject, waittime: String) -> OrderSoupIntentResponse } public static func failureoutofstock(soup: INObject) -> OrderSoupIntentResponse

42 // Custom response object public class OrderSoupIntentResponse : INIntentResponse { public var waittime: String? { get set } public var soup: INObject? { get set } public convenience init(code: OrderSoupIntentResponseCode, useractivity: NSUserActivity?) public static func success(soup: INObject, waittime: String) -> OrderSoupIntentResponse } public static func failureoutofstock(soup: INObject) -> OrderSoupIntentResponse

43 // Custom response object public class OrderSoupIntentResponse : INIntentResponse { public var waittime: String? { get set } public var soup: INObject? { get set } public convenience init(code: OrderSoupIntentResponseCode, useractivity: NSUserActivity?) public static func success(soup: INObject, waittime: String) -> OrderSoupIntentResponse } public static func failureoutofstock(soup: INObject) -> OrderSoupIntentResponse

44 Adopting Custom Responses Defining a custom response Define a custom intent Select a category for your intent Declare response properties Provide a response template string

45 Adopting Custom Responses Defining a custom response Define a custom intent Select a category for your intent Declare response properties Provide a response template string Provide custom responses in your intent handler

46 // Confirm that the intent can be run class OrderSoupIntentHandler: NSObject, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion:(ordersoupintentresponse) -> Void) { guard let identifier = intent.soup?.identifier else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let soupmenumanager = SoupMenuManager() let menuitem = soupmenumanager.finditem(identifier: identifier) completion(ordersoupintentresponse(code:.ready, useractivity: nil)) } }

47 // Confirm that the intent can be run class OrderSoupIntentHandler: NSObject, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion:(ordersoupintentresponse) -> Void) { guard let identifier = intent.soup?.identifier else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let soupmenumanager = SoupMenuManager() let menuitem = soupmenumanager.finditem(identifier: identifier) completion(ordersoupintentresponse(code:.ready, useractivity: nil)) } }

48 // Confirm that the intent can be run class OrderSoupIntentHandler: NSObject, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion:(ordersoupintentresponse) -> Void) { guard let identifier = intent.soup?.identifier else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let soupmenumanager = SoupMenuManager() let menuitem = soupmenumanager.finditem(identifier: identifier) completion(ordersoupintentresponse(code:.ready, useractivity: nil)) } }

49 // Confirm that the intent can be run class OrderSoupIntentHandler: NSObject, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion:(ordersoupintentresponse) -> Void) { guard let identifier = intent.soup?.identifier else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let soupmenumanager = SoupMenuManager() let menuitem = soupmenumanager.finditem(identifier: identifier) if menuitem.isavailable == false { completion(ordersoupintentresponse.failureoutofstock(soup: soup)) return } completion(ordersoupintentresponse(code:.ready, useractivity: nil)) } }

50 // Confirm that the intent can be run class OrderSoupIntentHandler: NSObject, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion:(ordersoupintentresponse) -> Void) { guard let identifier = intent.soup?.identifier else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let soupmenumanager = SoupMenuManager() let menuitem = soupmenumanager.finditem(identifier: identifier) if menuitem.isavailable == false { completion(ordersoupintentresponse.failureoutofstock(soup: soup)) return } completion(ordersoupintentresponse(code:.ready, useractivity: nil)) } }

51 // Confirm that the intent can be run class OrderSoupIntentHandler: NSObject, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion:(ordersoupintentresponse) -> Void) { guard let identifier = intent.soup?.identifier else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let soupmenumanager = SoupMenuManager() let menuitem = soupmenumanager.finditem(identifier: identifier) if menuitem.isavailable == false { completion(ordersoupintentresponse.failureoutofstock(soup: soup)) return } completion(ordersoupintentresponse(code:.ready, useractivity: nil)) } }

52 // Confirm that the intent can be run class OrderSoupIntentHandler: NSObject, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion:(ordersoupintentresponse) -> Void) { guard let identifier = intent.soup?.identifier else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let soupmenumanager = SoupMenuManager() let menuitem = soupmenumanager.finditem(identifier: identifier) if menuitem.isavailable == false { completion(ordersoupintentresponse.failureoutofstock(soup: soup)) return } completion(ordersoupintentresponse(code:.ready, useractivity: nil)) } }

53 // Confirm that the intent can be run class OrderSoupIntentHandler: NSObject, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion:(ordersoupintentresponse) -> Void) { guard let identifier = intent.soup?.identifier else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let soupmenumanager = SoupMenuManager() let menuitem = soupmenumanager.finditem(identifier: identifier) if menuitem.isavailable == false { completion(ordersoupintentresponse.failureoutofstock(soup: soup)) return } completion(ordersoupintentresponse(code:.ready, useractivity: nil)) } }

54 // Handle the intent class IntentHandler: INExtension, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) {... } func handle(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) { guard let soup = intent.soup, let order = Order(from: intent) else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let ordermanager = SoupOrderDataManager() ordermanager.placeorder(order: order) completion(ordersoupintentresponse(code:.success, useractivity: nil)) } }

55 // Handle the intent class IntentHandler: INExtension, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) {... } func handle(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) { guard let soup = intent.soup, let order = Order(from: intent) else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let ordermanager = SoupOrderDataManager() ordermanager.placeorder(order: order) completion(ordersoupintentresponse(code:.success, useractivity: nil)) } }

56 // Handle the intent class IntentHandler: INExtension, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) {... } func handle(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) { guard let soup = intent.soup, let order = Order(from: intent) else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let ordermanager = SoupOrderDataManager() ordermanager.placeorder(order: order) completion(ordersoupintentresponse(code:.success, useractivity: nil)) } }

57 // Handle the intent class IntentHandler: INExtension, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) {... } func handle(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) { guard let soup = intent.soup, let order = Order(from: intent) else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let ordermanager = SoupOrderDataManager() ordermanager.placeorder(order: order) completion(ordersoupintentresponse(code:.success, useractivity: nil)) } }

58 // Handle the intent class IntentHandler: INExtension, OrderSoupIntentHandling { func confirm(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) {... } func handle(intent: OrderSoupIntent, completion: (OrderSoupIntentResponse) -> Void) { guard let soup = intent.soup, let order = Order(from: intent) else { completion(ordersoupintentresponse(code:.failure, useractivity: nil)) return } let ordermanager = SoupOrderDataManager() ordermanager.placeorder(order: order) completion(ordersoupintentresponse.success(soup: soup, waittime: order.waittime)) } }

59

60

61

62

63 Adopting Custom Responses Custom UI Extension Provide a custom UI for your shortcut Shows in Siri, on Lock Screen, and in Search

64 Adopting Custom Responses Custom UI Extension Provide a custom UI for your shortcut Shows in Siri, on Lock Screen, and in Search What's New in SiriKit WWDC 2017

65

66

67

68

69 Demo

70 Adopting Custom Responses Define a custom intent Select a category for your intent Declare response properties Provide a response template string Provide the response in your intent handler

71 Siri Shortcuts Best Practices Ayaka Nonaka, Siri

72 NSUserActivity

73 NSUserActivity Intents

74 Customizing Donations

75 Customizing Donations Title

76 Customizing Donations Title Subtitle

77 Customizing Donations Title Subtitle Image

78 Customizing Donations Title Subtitle Image Suggested invocation phrase

79 Choosing a Good Title and Subtitle

80 Choosing a Good Title and Subtitle The title should represent what happens when you run the shortcut

81 Choosing a Good Title and Subtitle The title should represent what happens when you run the shortcut The subtitle should provide supplementary information if needed

82 Basic Guidelines for Title and Subtitle

83 Basic Guidelines for Title and Subtitle Use sentence case

84 Basic Guidelines for Title and Subtitle Use sentence case Keep the title concise

85 Basic Guidelines for Title and Subtitle Use sentence case Keep the title concise Include critical information

86 Basic Guidelines for Title and Subtitle Use sentence case Keep the title concise Include critical information Include a verb for Intents

87 Basic Guidelines for Title and Subtitle Use sentence case Keep the title concise Include critical information Include a verb for Intents Localize

88 Things to Avoid in Title and Subtitle

89 Things to Avoid in Title and Subtitle The name of your app

90 Things to Avoid in Title and Subtitle The name of your app Duplicate information in the title and subtitle

91 Things to Avoid in Title and Subtitle The name of your app Duplicate information in the title and subtitle Quotation marks except when referring to strings that will be used verbatim in the shortcut

92 A clam chowder from Soup Chef The best way to get soup Soup Chef

93 A clam chowder from Soup Chef The best way to get soup Soup Chef

94 A clam chowder The best way to get soup Soup Chef

95 A clam chowder The best way to get soup Soup Chef

96 Order clam chowder The best way to get soup Soup Chef

97 Order clam chowder The best way to get soup Soup Chef

98 Order clam chowder The best way to get soup Soup Chef

99 Order clam chowder The best way to get soup Soup Chef

100 Order clam chowder To One Apple Park Way Soup Chef

101 Order clam chowder To One Apple Park Way Soup Chef

102

103

104 // Setting an image on an NSUserActivity let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "View clam chowder" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) attributes.contentdescription = "With croutons // Subtitle let image = UIImage(named: Chowder")! attributes.thumbnaildata = image.pngdata() useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

105 // Setting an image on an NSUserActivity let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "View clam chowder" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) attributes.contentdescription = "With croutons // Subtitle let image = UIImage(named: Chowder")! attributes.thumbnaildata = image.pngdata() useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

106 // Setting an image on an NSUserActivity let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "View clam chowder" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) attributes.contentdescription = "With croutons // Subtitle let image = UIImage(named: Chowder")! attributes.thumbnaildata = image.pngdata() useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

107 // Setting an image on an NSUserActivity let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "View clam chowder" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) attributes.contentdescription = "With croutons // Subtitle let image = UIImage(named: Chowder")! attributes.thumbnaildata = image.pngdata() useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

108 // Setting an image on an NSUserActivity let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "View clam chowder" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) attributes.contentdescription = "With croutons // Subtitle let image = UIImage(named: Chowder")! attributes.thumbnaildata = image.pngdata() useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

109 // Setting an image on an NSUserActivity let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "View clam chowder" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) attributes.contentdescription = "With croutons // Subtitle let image = UIImage(named: Chowder")! attributes.thumbnaildata = image.pngdata() useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

110 // Setting an image on an INIntent import Intents let intent = PlaceOrderIntent() let soup = order.soup intent.soup = INObject(identifier: soup.identifier.uuidstring, displaystring: soup.name) intent.setimage(inimage(named: "Chowder"), forparameternamed: "soup") intent.setimage(inimage(named: "Office"), forparameternamed: "deliverylocation") let interaction = INInteraction(intent: intent, response: nil) interaction.donate { error in // Handle error }

111 // Setting an image on an INIntent import Intents let intent = PlaceOrderIntent() let soup = order.soup intent.soup = INObject(identifier: soup.identifier.uuidstring, displaystring: soup.name) intent.setimage(inimage(named: "Chowder"), forparameternamed: "soup") intent.setimage(inimage(named: "Office"), forparameternamed: "deliverylocation") let interaction = INInteraction(intent: intent, response: nil) interaction.donate { error in // Handle error }

112 // Setting an image on an INIntent import Intents let intent = PlaceOrderIntent() let soup = order.soup intent.soup = INObject(identifier: soup.identifier.uuidstring, displaystring: soup.name) intent.setimage(inimage(named: "Chowder"), forparameternamed: "soup") intent.setimage(inimage(named: "Office"), forparameternamed: "deliverylocation") let interaction = INInteraction(intent: intent, response: nil) interaction.donate { error in // Handle error }

113 // Setting an image on an INIntent import Intents let intent = PlaceOrderIntent() let soup = order.soup intent.soup = INObject(identifier: soup.identifier.uuidstring, displaystring: soup.name) intent.setimage(inimage(named: "Chowder"), forparameternamed: "soup") intent.setimage(inimage(named: "Office"), forparameternamed: "deliverylocation") let interaction = INInteraction(intent: intent, response: nil) interaction.donate { error in // Handle error }

114 // Setting an image on an INIntent import Intents let intent = PlaceOrderIntent() let soup = order.soup intent.soup = INObject(identifier: soup.identifier.uuidstring, displaystring: soup.name) intent.setimage(inimage(named: "Chowder"), forparameternamed: "soup") intent.setimage(inimage(named: "Office"), forparameternamed: "deliverylocation") let interaction = INInteraction(intent: intent, response: nil) interaction.donate { error in // Handle error }

115

116

117

118

119

120

121 // Suggesting an invocation phrase on an NSUserActivity let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "View clam chowder" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) attributes.contentdescription = "With croutons" // Subtitle let image = UIImage(named: "Chowder")! attributes.thumbnaildata = image.pngdata() useractivity.contentattributeset = attributes useractivity.suggestedinvocationphrase = "Chowder time" viewcontroller.useractivity = useractivity

122 // Suggesting an invocation phrase on an NSUserActivity let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "View clam chowder" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) attributes.contentdescription = "With croutons" // Subtitle let image = UIImage(named: "Chowder")! attributes.thumbnaildata = image.pngdata() useractivity.contentattributeset = attributes useractivity.suggestedinvocationphrase = "Chowder time" viewcontroller.useractivity = useractivity

123 // Suggesting an invocation phrase on an INIntent import Intents let intent = PlaceOrderIntent() let soup = order.soup intent.soup = INObject(identifier: soup.identifier.uuidstring, displaystring: soup.name) intent.setimage(inimage(named: "Chowder"), forparameternamed: soup") intent.setimage(inimage(named: "Office"), forparameternamed: "deliverylocation") intent.suggestedinvocationphrase = "Chowder time" let interaction = INInteraction(intent: intent, response: nil) interaction.donate { error in // Handle error }

124 // Suggesting an invocation phrase on an INIntent import Intents let intent = PlaceOrderIntent() let soup = order.soup intent.soup = INObject(identifier: soup.identifier.uuidstring, displaystring: soup.name) intent.setimage(inimage(named: "Chowder"), forparameternamed: soup") intent.setimage(inimage(named: "Office"), forparameternamed: "deliverylocation") intent.suggestedinvocationphrase = "Chowder time" let interaction = INInteraction(intent: intent, response: nil) interaction.donate { error in // Handle error }

125 Choosing a Good Suggested Invocation Phrase

126 Choosing a Good Suggested Invocation Phrase Short and memorable

127 Choosing a Good Suggested Invocation Phrase Short and memorable Don t include Hey Siri

128 Hey Siri, please place an order, thank you

129 Hey Siri, please place an order, thank you

130 Order a clam chowder to my office

131 Order a clam chowder to my office

132 Chowder time

133 Chowder time

134 チャウダー 食べたい

135 Localization New Localization Workflows in Xcode 10 Hall 3 WWDC 2018 Internationalization Lab Technology Lab 9 Wednesday 11:00AM

136 Localization Localize both your code and the strings in your intent definition files New Localization Workflows in Xcode 10 Hall 3 WWDC 2018 Internationalization Lab Technology Lab 9 Wednesday 11:00AM

137 Localization Localize both your code and the strings in your intent definition files Pluralization New Localization Workflows in Xcode 10 Hall 3 WWDC 2018 Internationalization Lab Technology Lab 9 Wednesday 11:00AM

138 Chowder time

139

140

141 // How to suggest a shortcut for something a user hasn t done yet import Intents let suggestions = [ INShortcut(intent: orderfavoritesoupintent), INShortcut(userActivity: orderfavoritebeverageuseractivity), ] INVoiceShortcutCenter.shared.setShortcutSuggestions(suggestions)

142 // How to suggest a shortcut for something a user hasn t done yet import Intents let suggestions = [ INShortcut(intent: orderfavoritesoupintent), INShortcut(userActivity: orderfavoritebeverageuseractivity), ] INVoiceShortcutCenter.shared.setShortcutSuggestions(suggestions)

143 // How to suggest a shortcut for something a user hasn t done yet import Intents let suggestions = [ INShortcut(intent: orderfavoritesoupintent), INShortcut(userActivity: orderfavoritebeverageuseractivity), ] INVoiceShortcutCenter.shared.setShortcutSuggestions(suggestions)

144 // How to suggest a shortcut for something a user hasn t done yet import Intents let suggestions = [ INShortcut(intent: orderfavoritesoupintent), INShortcut(userActivity: orderfavoritebeverageuseractivity), ] INVoiceShortcutCenter.shared.setShortcutSuggestions(suggestions)

145 // How to suggest a shortcut for something a user hasn t done yet import Intents let suggestions = [ INShortcut(intent: orderfavoritesoupintent), INShortcut(userActivity: orderfavoritebeverageuseractivity), ] INVoiceShortcutCenter.shared.setShortcutSuggestions(suggestions)

146

147

148 Bringing Shortcuts Into Your App

149 Done Done Thanks for your order! $8, office Soup Chef Your clam chowder will be delivered to One Apple Park Way soon. Add to Siri

150

151 // Adding a shortcut from an NSUserActivity import IntentsUI let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") // Configure your NSUserActivity let shortcut = INShortcut(userActivity: useractivity) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

152 // Adding a shortcut from an NSUserActivity import IntentsUI let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") // Configure your NSUserActivity let shortcut = INShortcut(userActivity: useractivity) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

153 // Adding a shortcut from an NSUserActivity import IntentsUI let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") // Configure your NSUserActivity let shortcut = INShortcut(userActivity: useractivity) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

154 // Adding a shortcut from an NSUserActivity import IntentsUI let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") // Configure your NSUserActivity let shortcut = INShortcut(userActivity: useractivity) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

155 // Adding a shortcut from an NSUserActivity import IntentsUI let useractivity = NSUserActivity(activityType: "com.unicorny.soupchef.vieworder") // Configure your NSUserActivity let shortcut = INShortcut(userActivity: useractivity) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

156 // Adding a shortcut from an INIntent import IntentsUI let intent = PlaceOrderIntent() // Configure your INIntent let shortcut = INShortcut(intent: intent) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

157 // Adding a shortcut from an INIntent import IntentsUI let intent = PlaceOrderIntent() // Configure your INIntent let shortcut = INShortcut(intent: intent) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

158 // Adding a shortcut from an INIntent import IntentsUI let intent = PlaceOrderIntent() // Configure your INIntent let shortcut = INShortcut(intent: intent) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

159 // Adding a shortcut from an INIntent import IntentsUI let intent = PlaceOrderIntent() // Configure your INIntent let shortcut = INShortcut(intent: intent) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

160 // Adding a shortcut from an INIntent import IntentsUI let intent = PlaceOrderIntent() // Configure your INIntent let shortcut = INShortcut(intent: intent) let viewcontroller = INUIAddVoiceShortcutViewController(shortcut: shortcut) viewcontroller.delegate = self present(viewcontroller, animated: true)

161

162

163 Chowder time Tomato tomato

164 Summary

165 Summary Custom responses

166 Summary Custom responses Create rich intents UI

167 Summary Custom responses Create rich intents UI Details matter

168 Summary Custom responses Create rich intents UI Details matter Bring shortcuts into your app

169 More Information Siri Shortcuts on the Siri Watch Face Hall 3 Wednesday 11:00AM Shortcuts Lab Technology Lab 7 Wednesday 12:00PM Shortcuts Lab Technology Lab 7 Thursday 11:00 AM

170

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

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 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

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

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

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

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

Managing Documents In Your ios Apps

Managing Documents In Your ios Apps Session #WWDC18 Managing Documents In Your ios Apps 216 Brandon Tennant, Software Engineer Thomas Deniau, Software Engineer Rony Fadel, Software Engineer 2018 Apple Inc. All rights reserved. Redistribution

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

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

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

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 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

What s New in ARKit 2

What s New in ARKit 2 Session #WWDC18 What s New in ARKit 2 602 Arsalan Malik, ARKit Engineer Reinhard Klapfer, ARKit Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

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

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

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

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

Automatic Strong Passwords and Security Code AutoFill

Automatic Strong Passwords and Security Code AutoFill Session #WWDC18 Automatic Strong Passwords and Security Code AutoFill 204 Chelsea Pugh, ios Engineer Reza Abbasian, ios Engineer Harris Papadopoulos, ios Engineer 2018 Apple Inc. All rights reserved. Redistribution

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

Localizing with Xcode 9

Localizing with Xcode 9 Session Developer Tools #WWDC17 Localizing with Xcode 9 401 Sara Radi, Software Engineer Aya Siblini, Software Engineer Chris Hanson, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution

More information

Your Apps and the Future of macos Security

Your Apps and the Future of macos Security #WWDC18 Your Apps and the Future of macos Security Pierre-Olivier Martel, Security Engineering Manager Kelly Yancey, OS Security Garrett Jacobson, Trusted Execution 2018 Apple Inc. All rights reserved.

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

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

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

What s New in Swift Playgrounds

What s New in Swift Playgrounds Session Developer Tools #WWDC17 What s New in Swift Playgrounds 408 Connor Wakamo, Playgrounds Engineer Grace Kendall, Playgrounds Engineer Najla Bulous, Playgrounds Engineer 2017 Apple Inc. All rights

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 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

Thread Sanitizer and Static Analysis

Thread Sanitizer and Static Analysis Developer Tools #WWDC16 Thread Sanitizer and Static Analysis Help with finding bugs in your code Session 412 Anna Zaks Manager, Program Analysis Team Devin Coughlin Engineer, Program Analysis Team 2016

More information

What s New in Notifications

What s New in Notifications 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

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

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

Integrating Apps and Content with AR Quick Look

Integrating Apps and Content with AR Quick Look Session #WWDC18 Integrating Apps and Content with AR Quick Look 603 David Lui, ARKit Engineering Dave Addey, ARKit Engineering 2018 Apple Inc. All rights reserved. Redistribution or public display not

More information

Understanding Undefined Behavior

Understanding Undefined Behavior Session Developer Tools #WWDC17 Understanding Undefined Behavior 407 Fred Riss, Clang Team Ryan Govostes, Security Engineering and Architecture Team Anna Zaks, Program Analysis Team 2017 Apple Inc. All

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

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 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

Vision Framework. Building on Core ML. Media #WWDC17. Brett Keating, Apple Manager Frank Doepke, He who wires things together

Vision Framework. Building on Core ML. Media #WWDC17. Brett Keating, Apple Manager Frank Doepke, He who wires things together Session Media #WWDC17 Vision Framework Building on Core ML 506 Brett Keating, Apple Manager Frank Doepke, He who wires things together 2017 Apple Inc. All rights reserved. Redistribution or public display

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

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

Engineering for Testability

Engineering for Testability Session Developer Tools #WWDC17 Engineering for Testability 414 Brian Croom, Xcode Engineer Greg Tracy, Xcode Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted

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

Building Visually Rich User Experiences

Building Visually Rich User Experiences Session App Frameworks #WWDC17 Building Visually Rich User Experiences 235 Noah Witherspoon, Software Engineer Warren Moore, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or public

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

Getting Started with CareKit

Getting Started with CareKit App Frameworks #WWDC16 Getting Started with CareKit Session 237 Umer Khan Software Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Building Apps with Dynamic Type

Building Apps with Dynamic Type Session App Frameworks #WWDC17 Building Apps with Dynamic Type 245 Clare Kasemset, Software Engineering Manager Nandini Sundar, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or

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 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

Getting the Most out of Playgrounds in Xcode

Getting the Most out of Playgrounds in Xcode #WWDC18 Getting the Most out of Playgrounds in Xcode Session 402 Tibet Rooney-Rabdau, Xcode Engineer Alex Brown, Core OS Engineer TJ Usiyan, Xcode Engineer 2018 Apple Inc. All rights reserved. Redistribution

More information

Advances in TVMLKit. App Frameworks #WWDC17. Trevor Cortez, Localization Engineer Parry Panesar, tvos Engineer Jeremy Foo, tvos Engineer

Advances in TVMLKit. App Frameworks #WWDC17. Trevor Cortez, Localization Engineer Parry Panesar, tvos Engineer Jeremy Foo, tvos Engineer Session App Frameworks #WWDC17 Advances in TVMLKit 202 Trevor Cortez, Localization Engineer Parry Panesar, tvos Engineer Jeremy Foo, tvos Engineer 2017 Apple Inc. All rights reserved. Redistribution or

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

Adapting to the New UI of OS X Yosemite

Adapting to the New UI of OS X Yosemite Frameworks #WWDC14 Adapting to the New UI of OS X Yosemite Session 209 Mike Stern User Experience Evangelist! Rachel Goldeen Cocoa Software Engineer! Patrick Heynen Cocoa Engineering Manager 2014 Apple

More information

Validating HTTP Live Streams

Validating HTTP Live Streams Media #WWDC16 Validating HTTP Live Streams Session 510 Eryk Vershen Media Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

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

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

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

What s New in SpriteKit

What s New in SpriteKit Graphics and Games #WWDC16 What s New in SpriteKit Session 610 Ross Dexter Games Technologies Engineer Clément Boissière Games Technologies Engineer 2016 Apple Inc. All rights reserved. Redistribution

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

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

Improving your Existing Apps with Swift

Improving your Existing Apps with Swift Developer Tools #WWDC15 Improving your Existing Apps with Swift Getting Swifty with It Session 403 Woody L. in the Sea of Swift 2015 Apple Inc. All rights reserved. Redistribution or public display not

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

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

ios Configuration and APIs for Kiosk and Assessment Apps

ios Configuration and APIs for Kiosk and Assessment Apps Session Systems Framework #WWDC17 ios Configuration and APIs for Kiosk and Assessment Apps 716 Steve Hayman, Consulting Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not

More information

What s New in Audio. Media #WWDC17. Akshatha Nagesh, AudioEngine-eer Béla Balázs, Audio Artisan Torrey Holbrook Walker, Audio/MIDI Black Ops

What s New in Audio. Media #WWDC17. Akshatha Nagesh, AudioEngine-eer Béla Balázs, Audio Artisan Torrey Holbrook Walker, Audio/MIDI Black Ops Session Media #WWDC17 What s New in Audio 501 Akshatha Nagesh, AudioEngine-eer Béla Balázs, Audio Artisan Torrey Holbrook Walker, Audio/MIDI Black Ops 2017 Apple Inc. All rights reserved. Redistribution

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

Core Data Best Practices

Core Data Best Practices #WWDC18 Core Data Best Practices Session 224 Scott Perry, Engineer Nick Gillett, Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

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

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

Working with Metal Overview

Working with Metal Overview Graphics and Games #WWDC14 Working with Metal Overview Session 603 Jeremy Sandmel GPU Software 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

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

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

Getting Published in Apple News

Getting Published in Apple News Media #WWDC16 Getting Published in Apple News Session 502 Ryan Griggs Apple News 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

More information

AVContentKeySession Best Practices

AVContentKeySession Best Practices Session #WWDC18 AVContentKeySession Best Practices 507 Anil Katti, AVFoundation Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

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

Learn to make watchosle

Learn to make watchosle HACKING WITH SWIFT COMPLETE TUTORIAL COURSE Learn to make watchosle P apps with real-worldam S Swift projects REEPaul Hudson F Project 1 NoteDictate 2 www.hackingwithswift.com Setting up In this project

More information

What s New in Device Configuration, Deployment, and Management

What s New in Device Configuration, Deployment, and Management Session Distribution #WWDC17 What s New in Device Configuration, Deployment, and Management 304 Todd Fernandez, Senior Manager, Device Management and Server 2017 Apple Inc. All rights reserved. Redistribution

More information

JavaScript for Automation

JavaScript for Automation Services #WWDC14 JavaScript for Automation Session 306 Sal Soghoian Product Manger Automation Technologies 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Finding Bugs Using Xcode Runtime Tools

Finding Bugs Using Xcode Runtime Tools Session Developer Tools #WWDC17 Finding Bugs Using Xcode Runtime Tools 406 Kuba Mracek, Program Analysis Engineer Vedant Kumar, Compiler Engineer 2017 Apple Inc. All rights reserved. Redistribution or

More information

Optimizing Swift Performance Session 409

Optimizing Swift Performance Session 409 Developer Tools #WWDC15 Optimizing Swift Performance Session 409 Nadav Rotem Manager, Swift Performance Team Michael Gottesman Engineer, Swift Performance Team Joe Grzywacz Engineer, Performance Tools

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

Using Accelerate and simd

Using Accelerate and simd Session #WWDC18 Using Accelerate and simd 701 Matthew Badin, CoreOS, Vector and Numerics Luke Chang, CoreOS, Vector and Numerics 2018 Apple Inc. All rights reserved. Redistribution or public display not

More information

Leveraging Touch Input on ios

Leveraging Touch Input on ios App Frameworks #WWDC16 Leveraging Touch Input on ios And getting the most out of Apple Pencil Session 220 Dominik Wagner UIKit Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display

More information