CarPlay Audio and Navigation Apps

Size: px
Start display at page:

Download "CarPlay Audio and Navigation Apps"

Transcription

1 #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 or public display not permitted without written permission from Apple.

2 Agenda CarPlay audio app improvements Navigating with the new CarPlay framework CarPlay navigation demo

3

4 What s Special About CarPlay? Touch screens, rotary knob, and touchpad inputs Left and right hand drive Night interface style Screen sizes

5 Automaker Messaging VoIP Audio calling Navigation

6

7

8

9

10

11 Automaker Messaging VoIP Audio calling Navigation

12 Automaker Messaging VoIP Audio calling Navigation

13 Audio Apps in CarPlay Albert Wan, ios Car Experience

14

15 Srirocka

16 Audio Apps in CarPlay Template based Works with all CarPlay systems Uses existing MediaPlayer APIs

17 CarPlay Audio App APIs Browsing Content Now Playing MPNowPlayingInfoCenter MPPlayableContent MPRemoteCommandCenter

18 func application( _ application: UIApplication, didfinishlaunchingwithoptions launchoptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { // Set up data source and delegate MPPlayableContentManager.shared().dataSource = SrirockaContentManager.shared MPPlayableContentManager.shared().delegate = SrirockaContentManager.shared // Set Now Playing metadata in MPNowPlayingInfoCenter let nowplayinginfo: [String: Any] = [:] MPNowPlayingInfoCenter.default().nowPlayingInfo = nowplayinginfo // Respond to remote command events let commandcenter = MPRemoteCommandCenter.shared() commandcenter.playcommand.isenabled = true commandcenter.playcommand.addtarget { _ in.success

19 func application( _ application: UIApplication, didfinishlaunchingwithoptions launchoptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { // Set up data source and delegate MPPlayableContentManager.shared().dataSource = SrirockaContentManager.shared MPPlayableContentManager.shared().delegate = SrirockaContentManager.shared // Set Now Playing metadata in MPNowPlayingInfoCenter let nowplayinginfo: [String: Any] = [:] MPNowPlayingInfoCenter.default().nowPlayingInfo = nowplayinginfo // Respond to remote command events let commandcenter = MPRemoteCommandCenter.shared() commandcenter.playcommand.isenabled = true commandcenter.playcommand.addtarget { _ in.success

20 func application( _ application: UIApplication, didfinishlaunchingwithoptions launchoptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { // Set up data source and delegate MPPlayableContentManager.shared().dataSource = SrirockaContentManager.shared MPPlayableContentManager.shared().delegate = SrirockaContentManager.shared // Set Now Playing metadata in MPNowPlayingInfoCenter let nowplayinginfo: [String: Any] = [:] MPNowPlayingInfoCenter.default().nowPlayingInfo = nowplayinginfo // Respond to remote command events let commandcenter = MPRemoteCommandCenter.shared() commandcenter.playcommand.isenabled = true commandcenter.playcommand.addtarget { _ in.success

21 func application( _ application: UIApplication, didfinishlaunchingwithoptions launchoptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { // Set up data source and delegate MPPlayableContentManager.shared().dataSource = SrirockaContentManager.shared MPPlayableContentManager.shared().delegate = SrirockaContentManager.shared // Set Now Playing metadata in MPNowPlayingInfoCenter let nowplayinginfo: [String: Any] = [:] MPNowPlayingInfoCenter.default().nowPlayingInfo = nowplayinginfo // Respond to remote command events let commandcenter = MPRemoteCommandCenter.shared() commandcenter.playcommand.isenabled = true commandcenter.playcommand.addtarget { _ in.success

22 MPPlayableContent

23 MPPlayableContent Remastered

24 Improvements in ios 12 NEW Improved performance in MPPlayableContent Faster startup sequence Smoother animations Better communication to your app

25 Best Practices Call reloaddata() only when needed Use beginupdates() and endupdates() Keep an internal representation of the data source to optimize performance

26

27

28

29 Don t Miss a Beat! Account for these common scenarios Screen locked with passcode Unreliable network connectivity

30 Anticipate the Hits Utilize beginloadingchilditems() to initiate fetching content func beginloadingchilditems(at indexpath: IndexPath, (Error?) -> Void) { if indexpath.indexatposition(2) == 0 { // Start fetching content that requires a network connection or needs some setup startprocessingheatinghabaneros()... completionhandler(nil)

31

32

33

34 Greatest Hits Use MPPlayableContent to populate the CarPlay screen Anticipate user scenarios while driving Run your audio apps in CarPlay!

35 Navigating with CarPlay Framework Mike Knippers, ios Car Experience

36

37 Navigation Apps in CarPlay NEW Built with CarPlay framework Template based System Supports all CarPlay systems App System

38

39

40

41 func application(_ application: UIApplication, didconnectcarinterfacecontroller interfacecontroller: CPInterfaceController, to window: UIWindow) { self.interfacecontroller = interfacecontroller self.carwindow = window let rootviewcontroller = MyRootViewController() window.rootviewcontroller = rootviewcontroller let roottemplate: CPMapTemplate = createroottemplate() self.interfacecontroller?.setroottemplate(roottemplate, animated: false)

42 func application(_ application: UIApplication, didconnectcarinterfacecontroller interfacecontroller: CPInterfaceController, to window: UIWindow) { self.interfacecontroller = interfacecontroller self.carwindow = window let rootviewcontroller = MyRootViewController() window.rootviewcontroller = rootviewcontroller let roottemplate: CPMapTemplate = createroottemplate() self.interfacecontroller?.setroottemplate(roottemplate, animated: false)

43 func application(_ application: UIApplication, didconnectcarinterfacecontroller interfacecontroller: CPInterfaceController, to window: UIWindow) { self.interfacecontroller = interfacecontroller self.carwindow = window let rootviewcontroller = MyRootViewController() window.rootviewcontroller = rootviewcontroller let roottemplate: CPMapTemplate = createroottemplate() self.interfacecontroller?.setroottemplate(roottemplate, animated: false)

44 func application(_ application: UIApplication, didconnectcarinterfacecontroller interfacecontroller: CPInterfaceController, to window: UIWindow) { self.interfacecontroller = interfacecontroller self.carwindow = window let rootviewcontroller = MyRootViewController() window.rootviewcontroller = rootviewcontroller let roottemplate: CPMapTemplate = createroottemplate() self.interfacecontroller?.setroottemplate(roottemplate, animated: false)

45 func application(_ application: UIApplication, didconnectcarinterfacecontroller interfacecontroller: CPInterfaceController, to window: UIWindow) { self.interfacecontroller = interfacecontroller self.carwindow = window let rootviewcontroller = MyRootViewController() window.rootviewcontroller = rootviewcontroller let roottemplate: CPMapTemplate = createroottemplate() self.interfacecontroller?.setroottemplate(roottemplate, animated: false)

46

47

48

49

50 Map Template Key responsibilities Panning Navigation alerts Guidance

51 Map Template Key responsibilities Panning Navigation alerts Guidance

52

53

54

55

56

57 func createroottemplate() -> CPMapTemplate { let maptemplate = CPMapTemplate()... let categorysearchbutton = CPBarButton(type:.image) { [weak self] _ in self?.displayfavoritecategories() guard let favoritesimage = self.getbuttonimage(buttonname: "Favorites") else { return categorysearchbutton.image = favoritesimage maptemplate.trailingnavigationbarbuttons = [trafficbutton, categorysearchbutton] return maptemplate

58 func createroottemplate() -> CPMapTemplate { let maptemplate = CPMapTemplate()... let categorysearchbutton = CPBarButton(type:.image) { [weak self] _ in self?.displayfavoritecategories() guard let favoritesimage = self.getbuttonimage(buttonname: "Favorites") else { return categorysearchbutton.image = favoritesimage maptemplate.trailingnavigationbarbuttons = [trafficbutton, categorysearchbutton] return maptemplate

59 func createroottemplate() -> CPMapTemplate { let maptemplate = CPMapTemplate()... let categorysearchbutton = CPBarButton(type:.image) { [weak self] _ in self?.displayfavoritecategories() guard let favoritesimage = self.getbuttonimage(buttonname: "Favorites") else { return categorysearchbutton.image = favoritesimage maptemplate.trailingnavigationbarbuttons = [trafficbutton, categorysearchbutton] return maptemplate

60 func createroottemplate() -> CPMapTemplate { let maptemplate = CPMapTemplate()... let categorysearchbutton = CPBarButton(type:.image) { [weak self] _ in self?.displayfavoritecategories() guard let favoritesimage = self.getbuttonimage(buttonname: "Favorites") else { return categorysearchbutton.image = favoritesimage maptemplate.trailingnavigationbarbuttons = [trafficbutton, categorysearchbutton] return maptemplate

61 func createroottemplate() -> CPMapTemplate { let maptemplate = CPMapTemplate()... let categorysearchbutton = CPBarButton(type:.image) { [weak self] _ in self?.displayfavoritecategories() guard let favoritesimage = self.getbuttonimage(buttonname: "Favorites") else { return categorysearchbutton.image = favoritesimage maptemplate.trailingnavigationbarbuttons = [trafficbutton, categorysearchbutton] return maptemplate

62 func createroottemplate() -> CPMapTemplate { let maptemplate = CPMapTemplate()... let categorysearchbutton = CPBarButton(type:.image) { [weak self] _ in self?.displayfavoritecategories() guard let favoritesimage = self.getbuttonimage(buttonname: "Favorites") else { return categorysearchbutton.image = favoritesimage maptemplate.trailingnavigationbarbuttons = [trafficbutton, categorysearchbutton] return maptemplate

63

64

65

66 func displayfavoritecategories() { guard let image = self.getcategoryimage(categoryname: "Parks") else { return let parksbutton = CPGridButton(titleVariants: ["Parks"], image: image) { [weak self] _ in self?.searchfornearbyparks()... let buttons = [parksbutton, beachesbutton, forestsbutton, desertsbutton] let template = CPGridTemplate(title: "Favorites", gridbuttons: buttons) interfacecontroller?.pushtemplate(template, animated: true)

67 func displayfavoritecategories() { guard let image = self.getcategoryimage(categoryname: "Parks") else { return let parksbutton = CPGridButton(titleVariants: ["Parks"], image: image) { [weak self] _ in self?.searchfornearbyparks()... let buttons = [parksbutton, beachesbutton, forestsbutton, desertsbutton] let template = CPGridTemplate(title: "Favorites", gridbuttons: buttons) interfacecontroller?.pushtemplate(template, animated: true)

68 func displayfavoritecategories() { guard let image = self.getcategoryimage(categoryname: "Parks") else { return let parksbutton = CPGridButton(titleVariants: ["Parks"], image: image) { [weak self] _ in self?.searchfornearbyparks()... let buttons = [parksbutton, beachesbutton, forestsbutton, desertsbutton] let template = CPGridTemplate(title: "Favorites", gridbuttons: buttons) interfacecontroller?.pushtemplate(template, animated: true)

69 func displayfavoritecategories() { guard let image = self.getcategoryimage(categoryname: "Parks") else { return let parksbutton = CPGridButton(titleVariants: ["Parks"], image: image) { [weak self] _ in self?.searchfornearbyparks()... let buttons = [parksbutton, beachesbutton, forestsbutton, desertsbutton] let template = CPGridTemplate(title: "Favorites", gridbuttons: buttons) interfacecontroller?.pushtemplate(template, animated: true)

70 func displayfavoritecategories() { guard let image = self.getcategoryimage(categoryname: "Parks") else { return let parksbutton = CPGridButton(titleVariants: ["Parks"], image: image) { [weak self] _ in self?.searchfornearbyparks()... let buttons = [parksbutton, beachesbutton, forestsbutton, desertsbutton] let template = CPGridTemplate(title: "Favorites", gridbuttons: buttons) interfacecontroller?.pushtemplate(template, animated: true)

71

72

73

74 func displaynearbyparks(with results: [SearchResult]) { let listitems = results.map { result in return CPListItem(text: result.name, detailtext: result.address, image: result.image) let section = CPListSection(items: listitems) let listtemplate = CPListTemplate(sections: [section]) listtemplate.title = "Parks" listtemplate.delegate = self interfacecontroller?.pushtemplate(listtemplate, animated: true) func listtemplate(_ listtemplate: CPListTemplate, didselect item: CPListItem, () -> Void) {...

75 func displaynearbyparks(with results: [SearchResult]) { let listitems = results.map { result in return CPListItem(text: result.name, detailtext: result.address, image: result.image) let section = CPListSection(items: listitems) let listtemplate = CPListTemplate(sections: [section]) listtemplate.title = "Parks" listtemplate.delegate = self interfacecontroller?.pushtemplate(listtemplate, animated: true) func listtemplate(_ listtemplate: CPListTemplate, didselect item: CPListItem, () -> Void) {...

76 func displaynearbyparks(with results: [SearchResult]) { let listitems = results.map { result in return CPListItem(text: result.name, detailtext: result.address, image: result.image) let section = CPListSection(items: listitems) let listtemplate = CPListTemplate(sections: [section]) listtemplate.title = "Parks" listtemplate.delegate = self interfacecontroller?.pushtemplate(listtemplate, animated: true) func listtemplate(_ listtemplate: CPListTemplate, didselect item: CPListItem, () -> Void) {...

77 func displaynearbyparks(with results: [SearchResult]) { let listitems = results.map { result in return CPListItem(text: result.name, detailtext: result.address, image: result.image) let section = CPListSection(items: listitems) let listtemplate = CPListTemplate(sections: [section]) listtemplate.title = "Parks" listtemplate.delegate = self interfacecontroller?.pushtemplate(listtemplate, animated: true) func listtemplate(_ listtemplate: CPListTemplate, didselect item: CPListItem, () -> Void) {...

78 func displaynearbyparks(with results: [SearchResult]) { let listitems = results.map { result in return CPListItem(text: result.name, detailtext: result.address, image: result.image) let section = CPListSection(items: listitems) let listtemplate = CPListTemplate(sections: [section]) listtemplate.title = "Parks" listtemplate.delegate = self interfacecontroller?.pushtemplate(listtemplate, animated: true) func listtemplate(_ listtemplate: CPListTemplate, didselect item: CPListItem, () -> Void) {...

79

80

81

82

83

84

85 Demo Jonathan Hersh, ios Car Experience

86 Guidance Mike Knippers, ios Car Experience

87 Guidance Beginning navigation Select Destination

88 Guidance Beginning navigation Select Destination Preview

89 Guidance Beginning navigation Select Destination Preview Select Route and Begin

90 Guidance Beginning navigation Active navigation Select Destination Show Turn By Turn Preview Select Route and Begin

91 Guidance Beginning navigation Active navigation Select Destination Show Turn By Turn Preview End Navigation Select Route and Begin

92

93

94 Route Preview Classes and methods class CPTrip, class CPRouteChoice, class CPTravelEstimates // CPMapTemplate func showtrippreviews(_ trippreviews: [CPTrip]) // CPMapTemplateDelegate func maptemplate(_ maptemplate: CPMapTemplate, selectedpreviewfor trip: CPTrip, using routechoice: CPRouteChoice) // UIView func safeareainsetsdidchange()

95

96 Guidance Classes and methods protocol CPMapTemplateDelegate, class CPMapTemplate, class CPNavigationSession // CPMapTemplateDelegate func maptemplate(_ maptemplate: CPMapTemplate, startedtrip trip: CPTrip, using routechoice: CPRouteChoice) // CPMapTemplate func startnavigationsession(for trip: CPTrip) -> CPNavigationSession

97 Guidance Classes and methods class CPNavigationSession, class CPManeuver, class CPTravelEstimates // CPNavigationSession var upcomingmaneuvers: [CPManeuver] func update(_ estimates: CPTravelEstimates, for maneuver: CPManeuver) // AVAudioSession let AVAudioSessionModeVoicePrompt: String static var duckothers: AVAudioSessionCategoryOptions static var interruptspokenaudioandmixwithothers: AVAudioSessionCategoryOptions

98 Guidance What happens next? Set upcoming maneuvers and travel estimates Set pause reason Navigation alerts End Navigation

99

100 Notifications // CPMapTemplateDelegate func maptemplate(_ maptemplate: CPMapTemplate, shouldshownotificationfor maneuver: CPManeuver) -> Bool func maptemplate(_ maptemplate: CPMapTemplate, shouldupdatenotificationfor maneuver: CPManeuver, with travelestimates: CPTravelEstimates) -> Bool func maptemplate(_ maptemplate: CPMapTemplate, shouldshownotificationfor navigationalert: CPNavigationAlert) -> Bool

101 Demo Jonathan Hersh, ios Car Experience

102 guard let destination = item.userinfo as? MKMapItem else { completionhandler(); return let currentlocation = MKMapItem.forCurrentLocation() let routechoice = CPRouteChoice(summaryVariants: ["Take Solar Circle."], additionalinformationvariants: ["Traffic is light."]) let trip = CPTrip(origin: currentlocation, destination: destination, routechoices: [routechoice]) maptemplate.showtrippreviews([trip]) let estimates = CPTravelEstimates(distanceRemaining: Measurement(value: 1500, unit:.meters), timeremaining: 300) maptemplate.updateestimates(estimates, for: trip)

103 guard let destination = item.userinfo as? MKMapItem else { completionhandler(); return let currentlocation = MKMapItem.forCurrentLocation() let routechoice = CPRouteChoice(summaryVariants: ["Take Solar Circle."], additionalinformationvariants: ["Traffic is light."]) let trip = CPTrip(origin: currentlocation, destination: destination, routechoices: [routechoice]) maptemplate.showtrippreviews([trip]) let estimates = CPTravelEstimates(distanceRemaining: Measurement(value: 1500, unit:.meters), timeremaining: 300) maptemplate.updateestimates(estimates, for: trip)

104 guard let destination = item.userinfo as? MKMapItem else { completionhandler(); return let currentlocation = MKMapItem.forCurrentLocation() let routechoice = CPRouteChoice(summaryVariants: ["Take Solar Circle."], additionalinformationvariants: ["Traffic is light."]) let trip = CPTrip(origin: currentlocation, destination: destination, routechoices: [routechoice]) maptemplate.showtrippreviews([trip]) let estimates = CPTravelEstimates(distanceRemaining: Measurement(value: 1500, unit:.meters), timeremaining: 300) maptemplate.updateestimates(estimates, for: trip)

105 guard let destination = item.userinfo as? MKMapItem else { completionhandler(); return let currentlocation = MKMapItem.forCurrentLocation() let routechoice = CPRouteChoice(summaryVariants: ["Take Solar Circle."], additionalinformationvariants: ["Traffic is light."]) let trip = CPTrip(origin: currentlocation, destination: destination, routechoices: [routechoice]) maptemplate.showtrippreviews([trip]) let estimates = CPTravelEstimates(distanceRemaining: Measurement(value: 1500, unit:.meters), timeremaining: 300) maptemplate.updateestimates(estimates, for: trip)

106 guard let destination = item.userinfo as? MKMapItem else { completionhandler(); return let currentlocation = MKMapItem.forCurrentLocation() let routechoice = CPRouteChoice(summaryVariants: ["Take Solar Circle."], additionalinformationvariants: ["Traffic is light."]) let trip = CPTrip(origin: currentlocation, destination: destination, routechoices: [routechoice]) maptemplate.showtrippreviews([trip]) let estimates = CPTravelEstimates(distanceRemaining: Measurement(value: 1500, unit:.meters), timeremaining: 300) maptemplate.updateestimates(estimates, for: trip)

107 func maptemplate(_ maptemplate: CPMapTemplate, startedtrip trip: CPTrip, using routechoice: CPRouteChoice) { maptemplate.hidetrippreviews() let session = maptemplate.startnavigationsession(for: trip) session.pausetrip(for:.loading) guard let selectedroute = routechoice.userinfo as? CountryRoute else { return \. let maneuvers: [CPManeuver] = selectedroute.steps.map { step in let maneuver = CPManeuver() maneuver.instructionvariants = [step.instructions] maneuver.distancefrompreviousmaneuver = Measurement(value: step.distance, unit:.feet) return maneuver session.upcomingmaneuvers = [maneuvers.first]

108 func maptemplate(_ maptemplate: CPMapTemplate, startedtrip trip: CPTrip, using routechoice: CPRouteChoice) { maptemplate.hidetrippreviews() let session = maptemplate.startnavigationsession(for: trip) session.pausetrip(for:.loading) guard let selectedroute = routechoice.userinfo as? CountryRoute else { return \. let maneuvers: [CPManeuver] = selectedroute.steps.map { step in let maneuver = CPManeuver() maneuver.instructionvariants = [step.instructions] maneuver.distancefrompreviousmaneuver = Measurement(value: step.distance, unit:.feet) return maneuver session.upcomingmaneuvers = [maneuvers.first]

109 func maptemplate(_ maptemplate: CPMapTemplate, startedtrip trip: CPTrip, using routechoice: CPRouteChoice) { maptemplate.hidetrippreviews() let session = maptemplate.startnavigationsession(for: trip) session.pausetrip(for:.loading) guard let selectedroute = routechoice.userinfo as? CountryRoute else { return \. let maneuvers: [CPManeuver] = selectedroute.steps.map { step in let maneuver = CPManeuver() maneuver.instructionvariants = [step.instructions] maneuver.distancefrompreviousmaneuver = Measurement(value: step.distance, unit:.feet) return maneuver session.upcomingmaneuvers = [maneuvers.first]

110 func maptemplate(_ maptemplate: CPMapTemplate, startedtrip trip: CPTrip, using routechoice: CPRouteChoice) { maptemplate.hidetrippreviews() let session = maptemplate.startnavigationsession(for: trip) session.pausetrip(for:.loading) guard let selectedroute = routechoice.userinfo as? CountryRoute else { return \. let maneuvers: [CPManeuver] = selectedroute.steps.map { step in let maneuver = CPManeuver() maneuver.instructionvariants = [step.instructions] maneuver.distancefrompreviousmaneuver = Measurement(value: step.distance, unit:.feet) return maneuver session.upcomingmaneuvers = [maneuvers.first]

111 func maptemplate(_ maptemplate: CPMapTemplate, startedtrip trip: CPTrip, using routechoice: CPRouteChoice) { maptemplate.hidetrippreviews() let session = maptemplate.startnavigationsession(for: trip) session.pausetrip(for:.loading) guard let selectedroute = routechoice.userinfo as? CountryRoute else { return \. let maneuvers: [CPManeuver] = selectedroute.steps.map { step in let maneuver = CPManeuver() maneuver.instructionvariants = [step.instructions] maneuver.distancefrompreviousmaneuver = Measurement(value: step.distance, unit:.feet) return maneuver session.upcomingmaneuvers = [maneuvers.first]

112 CarPlay audio app improvements Navigating with the new CarPlay framework CarPlay navigation demo

113 More Information CarPlay Lab Technology Lab 11 Wednesday 2:00PM

114

CarPlay Navigation App Programming Guide. September 28, 2018

CarPlay Navigation App Programming Guide. September 28, 2018 CarPlay Navigation App Programming Guide September 28, 2018 apple Developer Table of Contents Introduction... 3 CarPlay Navigation Apps... 4 CarPlay Navigation App Entitlement... 4 Development Environment...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Mobile Application Programing: ios. Messaging

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

More information

What's New in Core Spotlight

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

More information

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

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

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

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

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

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

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

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

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

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

Announcements. Today s Topics

Announcements. Today s Topics Announcements Lab 2 is due tonight by 11:59 PM Late policy is 10% of lab total per day late So -7.5 points per day late for lab 2 Labs 3 and 4 are posted on the course website Extensible Networking Platform

More information

What s New in HomeKit

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

More information

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

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

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

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

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

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

Introducing the Photos Frameworks

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

More information

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

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

Social Pinboard: ios(swift) Application

Social Pinboard: ios(swift) Application Social Pinboard: ios(swift) Application Document Version 1.0.1 Date: 15 th May, 2015 2 [SOCIAL PINBOARD: APP DOCUMENTATION] Important Notes:... 5 AppDelegate Class Reference... 6 Tasks... 6 Instance Methods...

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

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

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

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

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

Document Version Date: 1st March, 2015

Document Version Date: 1st March, 2015 7 Minute Fitness: ios(swift) Application Document Version 1.0.1 Date: 1st March, 2015 2 [7 MINUTE FITNESS: APP DOCUMENTATION] Important Notes:... 5 AppDelegate Class Reference... 6 Tasks... 6 Instance

More information

Navi 900 IntelliLink, Touch R700 IntelliLink Frequently Asked Questions

Navi 900 IntelliLink, Touch R700 IntelliLink Frequently Asked Questions Index 1. Audio... 1 2. Navigation (only Navi 900 IntelliLink)... 2 3. Phone... 3 4. Apple CarPlay... 4 5. Android Auto... 6 6. Speech recognition... 8 7. Color instrument panel... 9 8. Favourites... 9

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

Precautions Very important information. Please read this section carefully before using this product.

Precautions Very important information. Please read this section carefully before using this product. Precautions Very important information. Please read this section carefully before using this product. This product is intended to provide turn-by-turn instructions to safely guide you to your desired destination.

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

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

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

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

Switching screens using the touch panel keys Switching screens using the hardware buttons

Switching screens using the touch panel keys Switching screens using the hardware buttons Quick Start Guide MULTIMEDIA NAVIGATION RECEIVER AVIC-8200NEX/AVIC-7200NEX This guide is intended to guide you through the basic functions of this navigation system. For details, please refer to the Operation

More information

ENGLISH QUICK START GUIDE NAVIGATION CAMPER & TRUCK EDITION

ENGLISH QUICK START GUIDE NAVIGATION CAMPER & TRUCK EDITION V1.1 NAVIGATION QUICK START GUIDE ENGLISH CAMPER & TRUCK EDITION Getting started When using the navigation software for the first time, an initial setup process starts automatically. Do as follows: Select

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

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

WINDOWS 8.X SIG SEPTEMBER 22, 2014

WINDOWS 8.X SIG SEPTEMBER 22, 2014 New Start Screen: Top RIGHT corner next to your Sign in Name is the OFF button. To the Right of Off button is a Search icon You can click on Search icon OR just start typing anywhere in open area of Start

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

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

Stanford CS193p. Developing Applications for ios. Fall CS193p. Fall

Stanford CS193p. Developing Applications for ios. Fall CS193p. Fall Stanford Developing Applications for ios Today Drag and Drop Transferring information around within and between apps. EmojiArt Demo Drag and drop an image to get our EmojiArt masterpieces started. UITableView

More information

Prezi Creating a Prezi

Prezi Creating a Prezi Prezi Creating a Prezi Log in to your account and click on the New Prezi button. Enter a title and (optional) description, and then click on the Create New Prezi button. Selecting a Template Select a template.

More information

Mobile Application Programming. Messaging and Delegation

Mobile Application Programming. Messaging and Delegation Mobile Application Programming Messaging and Delegation Color Chooser Color Chooser MFColorChooserView UIControl or UIView MFColorChooserWheelView UIControl MFColorChooserValueSliderView UIControl MFColorChooserAlphaSliderView

More information

Apple CarPlay. Quick Start Guide AUDIO SYSTEMS VIDEO

Apple CarPlay. Quick Start Guide AUDIO SYSTEMS VIDEO Apple CarPlay AUDIO SYSTEMS VIDEO Snap the QR Code to view a video. Scroll to your audio system playlist and select the video you desire to view www.youtube.com/kiafeaturevideos Quick Start Guide Apple

More information

Mysteries of Auto Layout, Part 1

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

More information

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

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

More information

TomTom Navigation app for iphone/ipad Reference Guide

TomTom Navigation app for iphone/ipad Reference Guide TomTom Navigation app for iphone/ipad Reference Guide Contents Getting Started 6 Start TomTom Navigation app for iphone/ipad... 6 Updating your TomTom Navigation app for iphone/ipad... 6 GPS reception...

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

User Manual JRV9000. Navigation software for the JRV9000. English April 2016, ver. 1.0

User Manual JRV9000. Navigation software for the JRV9000. English April 2016, ver. 1.0 User Manual JRV9000 Navigation software for the JRV9000 English April 2016, ver. 1.0 Table of contents 1 Getting started... 5 1.1 Initial set-up... 5 1.2 Screen controls... 6 1.2.1 Using the buttons and

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

Accessibility on OS X

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

More information

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

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

More information

Over the Air System Updates April 28, 2018

Over the Air System Updates April 28, 2018 Over the Air System Updates April 28, 2018 2018 Odyssey: Software Update Available INTRODUCTION The latest software contains system enhancements and bug fixes for a number of rarely found problems. INSTALLATION

More information

Announcements. Today s Topics

Announcements. Today s Topics Announcements Lab 4 is due on Monday by 11:59 PM Special Guest Lecture next Wednesday Nathan Gitter, former Head TA of 438 He is currently featured on the front page of the ios App Store (Monday Oct 15

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

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

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

What s New in Core Location

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

More information

What s New in TVMLKit

What s New in TVMLKit #WWDC18 What s New in TVMLKit Session 238 Jeremy Foo, tvos Engineering 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. Web Inspector

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

News- ipad: ios(swift) Application

News- ipad: ios(swift) Application News- ipad: ios(swift) Application Document Version 1.0.1 Date: 9 th Nov, 2014 2 [NEWS- IPAD: APP DOCUMENTATION] Important Notes:... 6 AppDelegate Class Reference... 7 Tasks... 7 Instance Methods... 7

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

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