Introduction to Siri Shortcuts

Size: px
Start display at page:

Download "Introduction to Siri Shortcuts"

Transcription

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

2

3 Shortcuts let you expose the capabilities of your apps to Siri.

4

5

6

7

8

9

10

11

12

13 Adopting shortcuts Optimizing for suggestions Privacy Media shortcuts

14 Adopting Shortcuts

15 Creating Shortcuts

16 Creating Shortcuts Define Shortcut

17 Creating Shortcuts Define Shortcut Donate Shortcut

18 Creating Shortcuts Define Shortcut Donate Shortcut Handle Shortcut

19 What Makes a Great Shortcut? Every shortcut should: Accelerate the user to perform a key function of your app Be of persistent interest to the user Be executable at any time

20 Shortcuts APIs NSUserActivity Intents

21 Choosing an Adoption Strategy Use NSUserActivity if your shortcut: Opens something in your app Represents showing items that you index in Spotlight or offer for Handoff

22 Choosing an Adoption Strategy For the best experience, adopt Intents. Intents-based shortcuts can: Run inline, without launching your app Include custom voice response or a custom UI Include granular predictions

23 NSUserActivity

24 NSUserActivity Define your shortcut Declare a type in NSUserActivityTypes in your Info.plist <key>nsuseractivitytypes</key> <array> <string>com.myapp.name.my-activity-type</string> </array>

25 // How to donate a shortcut let useractivity = NSUserActivity(activityType: "com.myapp.name.my-activity-type") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "Activity" useractivity.userinfo = ["key": "value"] useractivity.suggestedinvocationphrase = "Let's do it" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) let image = UIImage(named: "myimage")! attributes.thumbnaildata = image.pngdata() attributes.contentdescription = "Subtitle" useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

26 // How to donate a shortcut let useractivity = NSUserActivity(activityType: "com.myapp.name.my-activity-type") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "Activity" useractivity.userinfo = ["key": "value"] useractivity.suggestedinvocationphrase = "Let's do it" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) let image = UIImage(named: "myimage")! attributes.thumbnaildata = image.pngdata() attributes.contentdescription = "Subtitle" useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

27 // How to donate a shortcut let useractivity = NSUserActivity(activityType: "com.myapp.name.my-activity-type") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "Activity" useractivity.userinfo = ["key": "value"] useractivity.suggestedinvocationphrase = "Let's do it" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) let image = UIImage(named: "myimage")! attributes.thumbnaildata = image.pngdata() attributes.contentdescription = "Subtitle" useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

28 // How to donate a shortcut let useractivity = NSUserActivity(activityType: "com.myapp.name.my-activity-type") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "Activity" useractivity.userinfo = ["key": "value"] useractivity.suggestedinvocationphrase = "Let's do it" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) let image = UIImage(named: "myimage")! attributes.thumbnaildata = image.pngdata() attributes.contentdescription = "Subtitle" useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

29 // How to donate a shortcut let useractivity = NSUserActivity(activityType: "com.myapp.name.my-activity-type") useractivity.iseligibleforsearch = true useractivity.iseligibleforprediction = true useractivity.title = "Activity" useractivity.userinfo = ["key": "value"] useractivity.suggestedinvocationphrase = "Let's do it" let attributes = CSSearchableItemAttributeSet(itemContentType: kuttypeitem as String) let image = UIImage(named: "myimage")! attributes.thumbnaildata = image.pngdata() attributes.contentdescription = "Subtitle" useractivity.contentattributeset = attributes viewcontroller.useractivity = useractivity

30 // How to handle a shortcut func application(_ application: UIApplication, continue useractivity: NSUserActivity, ([Any]?) -> Void) -> Bool { if useractivity.activitytype == "com.myapp.name.my-activity-type" { // Restore state for useractivity and userinfo } }

31 NSUserActivity

32 Intents

33

34 Messaging Workouts Climate and Radio Ride Booking Photo Search Lists Notebook Car Commands Payments VOIP Calling

35 Custom Built-In Messaging Workouts Climate and Radio Ride Booking Photo Search Lists Notebook Car Commands Payments VOIP Calling

36 Intents Define your shortcut Create an intent definition file in Xcode to customize a built-in SiriKit intent or define a new custom intent. Go to File -> New File, and choose SiriKit Intent Definition File.

37

38

39

40

41

42

43

44

45

46

47

48 public class Intent: INIntent { public var items: [INObject]? public var deliverylocation: CLPlacemark? } public protocol IntentHandling: NSObjectProtocol { public func handle(intent: Intent, (IntentResponse) -> Void) optional func confirm(intent: Intent, (IntentResponse) -> Void) }

49 Intents Define your shortcut Target selection Your intent definition should be added to any target where the intents are used If you're using a framework, only generate classes for the framework No Generated Classes No Generated Classes Intent Classes Intent Classes Intent Classes Framework No Framework

50 // Donate your shortcut let intent = PlaceOrderIntent() intent.items = order.items.map({ INObject(identifier: $0.id.uuidString, display: $0.menuItem.displayName) }) intent.deliverylocation = order.destinationlocation let interaction = INInteraction(intent: intent, response: nil) interaction.donate { error in // Handle error }

51 // Handle your shortcut func application(_ application: UIApplication, continue useractivity: NSUserActivity, ([Any]?) -> Void) -> Bool { if useractivity.activitytype == "Intent", let intent = useractivity.interaction?.intent as? Intent { // Show ordering UI, pre-populated with the fields from the intent } }

52

53 // Handle your shortcut class IntentHandler: INExtension, IntentHandling { func confirm(intent: Intent, completion: (IntentResponse) -> Void) { completion(intentresponse(code:.ready, useractivity: nil)) } func handle(intent: Intent, completion: (IntentResponse) -> Void) { // Order the soup completion(intentresponse(code:.success, useractivity: nil)) } }

54 Intent Handling Notes Implement an intents extension to run your shortcut in the background, without launching your app Always implement -continueuseractivity, even if you have an intents extension

55 INRelevantShortcut Expose Shortcuts to the Siri Watch Face by providing INRelevantShortcut objects Optionally, include relevance information as a hint as to when your shortcuts should be shown on the Watch Face Works even if you don t have a Watch app Siri Shortcuts on the Siri Watch Face Hall 3 Wednesday :00AM

56 Demo Adopting Shortcuts Willem Mattelaer, Siri

57 Soup Chef Made NSUserActivity eligible for prediction

58 Soup Chef Made NSUserActivity eligible for prediction Defined a custom intent

59 Soup Chef Made NSUserActivity eligible for prediction Defined a custom intent Donated the intent

60 Soup Chef Made NSUserActivity eligible for prediction Defined a custom intent Donated the intent Handled the intent

61 Optimizing for Suggestions

62 How is a Shortcut Suggested?

63 How is a Shortcut Suggested? Order Tomato Soup

64 How is a Shortcut Suggested? Order Tomato Soup

65 How is a Shortcut Suggested? Time

66 How is a Shortcut Suggested? Order tomato soup with croutons Time Monday, :57 AM

67 How is a Shortcut Suggested? Order tomato soup with croutons Order tomato soup with red pepper Monday, :57 AM Monday, 6:06 PM Time

68 How is a Shortcut Suggested? Order tomato soup with croutons Order tomato soup with red pepper Order tomato soup with croutons Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Time

69 How is a Shortcut Suggested? Order tomato soup Order tomato soup Order tomato soup with croutons with red pepper with croutons Shortcut Suggestion Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Friday, 2:00 PM Time

70 How is a Shortcut Suggested? Order tomato soup with croutons Order tomato soup with red pepper Order tomato soup with croutons Order tomato soup with croutons Shortcut Suggestion Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Friday, 2:00 PM Time

71 How is a Shortcut Suggested? NSUserActivity NSUserActivity.userInfo soup quantity scrollposition

72 How is a Shortcut Suggested? NSUserActivity Time

73 How is a Shortcut Suggested? NSUserActivity NSUserActivity 79.0 Time

74 How is a Shortcut Suggested? NSUserActivity NSUserActivity NSUserActivity Time

75 How is a Shortcut Suggested? NSUserActivity NSUserActivity NSUserActivity NSUserActivity Time

76 How is a Shortcut Suggested? NSUserActivity NSUserActivity NSUserActivity NSUserActivity Shortcut Suggestion Time

77 How is a Shortcut Suggested? NSUserActivity NSUserActivity NSUserActivity NSUserActivity Shortcut Suggestion Time

78 How is a Shortcut Suggested? NSUserActivity requireduserinfokeys Minimal amount of information necessary for restoration

79 How is a Shortcut Suggested? NSUserActivity requireduserinfokeys Minimal amount of information necessary for restoration Used to find patterns

80 How is a Shortcut Suggested? NSUserActivity Time

81 How is a Shortcut Suggested? NSUserActivity NSUserActivity 79.0 Time

82 How is a Shortcut Suggested? NSUserActivity NSUserActivity Time

83 How is a Shortcut Suggested? NSUserActivity NSUserActivity NSUserActivity Time

84 How is a Shortcut Suggested? NSUserActivity NSUserActivity NSUserActivity NSUserActivity Time

85 How is a Shortcut Suggested? NSUserActivity NSUserActivity NSUserActivity NSUserActivity Shortcut Suggestion Time

86 How is a Shortcut Suggested? NSUserActivity NSUserActivity NSUserActivity NSUserActivity NSUserActivity Shortcut Suggestion Time

87 How is a Shortcut Suggested? Intents Shortcut Types

88 How is a Shortcut Suggested? Intents soup quantity options

89 How is a Shortcut Suggested? Intents soup quantity options soup soup soup quantity quantity options options Shortcut Types

90 How is a Shortcut Suggested? Intents Time

91 How is a Shortcut Suggested? Intents [ croutons ] Time Monday, :57 AM

92 How is a Shortcut Suggested? Intents [ croutons ] [ croutons ] Time Monday, :57 AM

93 How is a Shortcut Suggested? Intents [ red pepper ] [ croutons ] [ croutons ] Monday, :57 AM Monday, 6:06 PM Time

94 How is a Shortcut Suggested? Intents [ croutons ] [ red pepper ] [ croutons ] [ red pepper ] Monday, :57 AM Monday, 6:06 PM Time

95 How is a Shortcut Suggested? Intents [ croutons ] [ croutons ] [ red pepper ] [ croutons ] [ red pepper ] Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Time

96 How is a Shortcut Suggested? Intents [ croutons ] [ red pepper ] [ croutons ] [ croutons ] [ red pepper ] [ croutons ] Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Time

97 How is a Shortcut Suggested? Intents [ croutons ] [ red pepper ] [ croutons ] [ croutons ] [ red pepper ] [ croutons ] Shortcut Suggestion Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Friday, 2:00 PM Time

98 How is a Shortcut Suggested? Intents [ croutons ] [ red pepper ] [ croutons ] [ croutons ] [ red pepper ] [ croutons ] Shortcut Suggestion Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Friday, 2:00 PM Time

99 How is a Shortcut Suggested? Intents [ croutons ] [ red pepper ] [ croutons ] [ croutons ] [ red pepper ] [ croutons ] Shortcut Suggestion Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Friday, 2:00 PM Time

100 How is a Shortcut Suggested? Intents [ croutons ] [ red pepper ] [ croutons ] [ croutons ] [ red pepper ] [ croutons ] Shortcut Suggestion Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Friday, 2:00 PM Time

101 How is a Shortcut Suggested? Intents [ croutons ] [ red pepper ] [ croutons ] [ croutons ] [ red pepper ] [ croutons ] Shortcut Suggestion Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Friday, 2:00 PM Time

102 How is a Shortcut Suggested? Intents [ croutons ] [ red pepper ] [ croutons ] [ croutons ] Shortcut Suggestion [ red pepper ] [ croutons ] [ croutons ] Monday, :57 AM Monday, 6:06 PM Tuesday, :59 AM Friday, 2:00 PM Time

103 What Makes a Good Donation? Likely to be repeated

104 What Makes a Good Donation? Likely to be repeated Ensure the payload you re donating is consistent across donations

105 What Makes a Good Donation? Likely to be repeated Ensure the payload you re donating is consistent across donations Don t include timestamps

106 What Makes a Good Donation? Show my meetings for June 5th Show my meetings for today

107 What Makes a Good Donation? Likely to be repeated Ensure the payload you re donating is consistent across donations Don t include timestamps Donate once and only once for each user action

108 Custom Intents Parameters Use enums when the values for a parameter are clearly bounded

109 Custom Intents Parameters Use enums when the values for a parameter are clearly bounded New Localization Workflows with Xcode 0 Executive Ballroom Wednesday 0:00AM

110 Custom Intents Parameters Custom results in an INObject

111 Custom Intents Parameters Custom results in an INObject Combines an identifier with a display string

112 Custom Intents Parameters Custom results in an INObject Combines an identifier with a display string Identifier can reference an internal object

113 Custom Intents Parameters Custom results in an INObject Combines an identifier with a display string Identifier can reference an internal object Display string conveys that object to the user

114 Custom Intents Parameters Custom results in an INObject Combines an identifier with a display string Identifier can reference an internal object Display string conveys that object to the user Prevents possible implicit dependencies between parameters

115 Custom Intents Parameters public class MyIntent: INIntent { public var objectidentifier: String? public var objectstring: String? }

116 Custom Intents Parameters public class MyIntent: INIntent { public var objectidentifier: String? public var objectstring: String? } public class MyIntent: INIntent { } public var object: INObject?

117 Custom Intents Parameters public class MyIntent: INIntent { public var objectidentifier: String? public var objectstring: String? } public class MyIntent: INIntent { } public var object: INObject?

118 Shortcut Display Titles, subtitles and images Understandable Represent what will happen Building for Voice with Siri Shortcuts Hall 2 Wednesday 0:00AM

119 Shortcut Testing

120 Shortcut Testing Developer settings on device

121 Shortcut Testing Developer settings on device Set up a shortcut with Siri and edit the Xcode scheme to test

122 Shortcut Testing Developer settings on device Set up a shortcut with Siri and edit the Xcode scheme to test

123 Shortcut Testing Developer settings on device Set up a shortcut with Siri and edit the Xcode scheme to test Create a custom shortcut in the Shortcuts app

124

125 Privacy

126 Deleting Donations User expectations Prevent suggesting content that s no longer relevant

127 Deleting Donations NSUserActivity Deleting user activities with corresponding Spotlight items

128 Deleting Donations NSUserActivity Deleting user activities with corresponding Spotlight items useractivity.contentattributeset?.relateduniqueidentifier = "my-identifier" let searchableindex = CSSearchableIndex.default() searchableindex.deletesearchableitems(withidentifiers: ["my-identifier"]) { (error) in }

129 Deleting Donations NSUserActivity Deleting user activities with corresponding Spotlight items useractivity.contentattributeset?.relateduniqueidentifier = "my-identifier" let searchableindex = CSSearchableIndex.default() searchableindex.deletesearchableitems(withidentifiers: ["my-identifier"]) { (error) in }

130 Deleting Donations NSUserActivity NEW Persistent identifier property on NSUserActivity Use the identifier to later delete specific NSUserActivities

131 // Deleting NSUserActivity using persistent identifier NEW let useractivity = NSUserActivity(activityType: "my-activity-type") // Configure user activity... let persistentidentifier = NSUserActivityPersistentIdentifier("persistent-identifier") useractivity.persistentidentifier = persistentidentifier NSUserActivity.deleteSavedUserActivities(withPersistentIdentifiers: [persistentidentifier]) { } NSUserActivity.deleteAllSavedUserActivities { }

132 // Deleting NSUserActivity using persistent identifier NEW let useractivity = NSUserActivity(activityType: "my-activity-type") // Configure user activity... let persistentidentifier = NSUserActivityPersistentIdentifier("persistent-identifier") useractivity.persistentidentifier = persistentidentifier NSUserActivity.deleteSavedUserActivities(withPersistentIdentifiers: [persistentidentifier]) { } NSUserActivity.deleteAllSavedUserActivities { }

133 // Deleting NSUserActivity using persistent identifier NEW let useractivity = NSUserActivity(activityType: "my-activity-type") // Configure user activity... let persistentidentifier = NSUserActivityPersistentIdentifier("persistent-identifier") useractivity.persistentidentifier = persistentidentifier NSUserActivity.deleteSavedUserActivities(withPersistentIdentifiers: [persistentidentifier]) { } NSUserActivity.deleteAllSavedUserActivities { }

134 Deleting Donations Intents Identifier and group identifier properties on INInteraction Use the identifier or group identifier to later delete one or more INInteractions

135 // Donating let interaction = INInteraction(intent: intent, response: response) interaction.identifier = "my-identifier" interaction.groupidentifier = "my-group-identifier" interaction.donate { (error) in } // Deleting the donation INInteraction.delete(with: ["my-identifier"]) { (error) in } INInteraction.delete(with: "my-group-identifier") { (error) in } INInteraction.deleteAll { (error) in }

136 // Donating let interaction = INInteraction(intent: intent, response: response) interaction.identifier = "my-identifier" interaction.groupidentifier = "my-group-identifier" interaction.donate { (error) in } // Deleting the donation INInteraction.delete(with: ["my-identifier"]) { (error) in } INInteraction.delete(with: "my-group-identifier") { (error) in } INInteraction.deleteAll { (error) in }

137 // Donating let interaction = INInteraction(intent: intent, response: response) interaction.identifier = "my-identifier" interaction.groupidentifier = "my-group-identifier" interaction.donate { (error) in } // Deleting the donation INInteraction.delete(with: ["my-identifier"]) { (error) in } INInteraction.delete(with: "my-group-identifier") { (error) in } INInteraction.deleteAll { (error) in }

138 // Donating let interaction = INInteraction(intent: intent, response: response) interaction.identifier = "my-identifier" interaction.groupidentifier = "my-group-identifier" interaction.donate { (error) in } // Deleting the donation INInteraction.delete(with: ["my-identifier"]) { (error) in } INInteraction.delete(with: "my-group-identifier") { (error) in } INInteraction.deleteAll { (error) in }

139 Media Shortcuts

140 Play Media Intent NEW INPlayMediaIntent

141 Play Media Intent NEW INPlayMediaIntent Launches app in background

142 Play Media Intent NEW INPlayMediaIntent Launches app in background Suggested in playback controls on Lock Screen

143 Play Media Intent NEW INPlayMediaIntent Launches app in background Suggested in playback controls on Lock Screen Works on HomePod

144 Upcoming Media Use INUpcomingMedia API to tell the system about new media the user hasn t yet consumed Great for podcasts, TV shows

145 Summary Enables powerful new experiences Provides new ways to engage users Adopt with NSUserActivity or Intents See Building for Voice with Siri Shortcuts

146 More Information Building for Voice with Siri Shortcuts Hall 2 Wednesday 0:00AM Siri Shortcuts Lab Technology Lab 7 Wednesday 2:00PM Siri Shortcuts Lab Technology Lab Thursday :00AM

147

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ios 9 Day by Day Also by shinobicontrols This version was published Scott Logic Ltd

ios 9 Day by Day Also by shinobicontrols This version was published Scott Logic Ltd ios 9 Day by Day This version was published 2016-01-13 2014-2016 Scott Logic Ltd Also by shinobicontrols About this book Welcome to ios 9 Day by Day, the latest in our Day by Day series covering all that

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

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

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

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

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

Use the API or contact customer service to provide us with the following: General ios Android App Name (friendly one-word name)

Use the API or contact customer service to provide us with the following: General ios Android App Name (friendly one-word name) Oplytic Attribution V 1.2.0 December 2017 Oplytic provides attribution for app-to-app and mobile-web-to-app mobile marketing. Oplytic leverages the tracking provided by Universal Links (ios) and App Links

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

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

SUN CITY GRAND COMPUTERS APPLE SIG. GraComputers

SUN CITY GRAND COMPUTERS APPLE SIG. GraComputers SUN CITY GRAND COMPUTERS APPLE SIG GraComputers www.grandcomputers.org APPLE SIG THE APPLE SIG MISSION IS TO SERVE MEMBERS OF GRAND COMPUTERS CLUB INTERESTED IN MAC COMPUTERS AND APPLE DEVICES. THE TARGET

More information

lecture 10 UI/UX and Programmatic Design cs : spring 2018

lecture 10 UI/UX and Programmatic Design cs : spring 2018 lecture 10 UI/UX and Programmatic Design cs198-001 : spring 2018 1 Announcements custom app progress form due before lab (~1 minute) will be released after lecture only 2 labs left (both very important)

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

Localization Best Practices on tvos

Localization Best Practices on tvos Session App Frameworks #WWDC17 Localization Best Practices on tvos 248 Joaquim Lobo Silva, Internationalization Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not

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

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

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

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

Connect to CCPL

Connect to CCPL TECH NEWS Want to receive this publication by email each month? Sign up for our monthly newsletter! Send your request in an email to techteam@ccpl.org with your full name and phone number. We ll add you

More information

What s New in Core Bluetooth

What s New in Core Bluetooth Session System Frameworks #WWDC17 What s New in Core Bluetooth 712 Craig Dooley, Bluetooth Engineer Duy Phan, Bluetooth Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not

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

Maxime Defauw. Learning Swift

Maxime Defauw. Learning Swift Maxime Defauw Learning Swift SAMPLE CHAPTERS 1 Introduction Begin at the beginning, the King said, very gravely, and go on till you come to the end: then stop. Lewis Carroll, Alice in Wonderland Hi and

More information

1. Logging into My Media Mall

1. Logging into My Media Mall 1 For Nook Classic and Touch Instructions for Borrowing Nook E-books from My Media Mall *You will need to download software in order to get e-books from My Media Mall for the Nook. Nook books cannot be

More information

Technology Terms for 2017

Technology Terms for 2017 We will get started in a few minutes!!! Technology Terms for 2017 Important Tech Terms that everyone who uses technology should know and the AgeWell Computer Education Center CEC Spring Kick Off Week!

More information

Pearson Edexcel Award

Pearson Edexcel Award Pearson Edexcel Award May June 2018 Examination Timetable FINAL For more information on Edexcel qualifications please visit http://qualifications.pearson.com v3 Pearson Edexcel Award 2018 Examination View

More information