Creating Audio Apps for watchos

Size: px
Start display at page:

Download "Creating Audio Apps for watchos"

Transcription

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

2

3

4

5

6 Native controls Getting content Local playback Audio experience

7 Native controls Getting content Local playback Audio experience

8 Native controls Getting content Local playback Audio experience

9 Native controls Getting content Local playback Audio experience

10 Native controls Getting content Local playback Audio experience

11 Native Controls

12 Native Controls NEW

13 Native Controls NEW

14 Native Controls NEW

15

16

17 Native Controls Now playing view

18 Native Controls Now playing view Digital Crown controls volume

19 Native Controls Now playing view Digital Crown controls volume Place in non-scrolling controller

20 Native Controls Now playing view Digital Crown controls volume Place in non-scrolling controller Automatically switches sources

21 Native Controls Now playing view Digital Crown controls volume Place in non-scrolling controller Automatically switches sources Application tint color

22

23

24 Native Controls Volume control Controls iphone or local volume

25 Native Controls Volume control Controls iphone or local volume Application tint color

26 Native Controls Volume control Controls iphone or local volume Application tint color

27 Native Controls Volume control

28 Native Controls Volume control

29 Native Controls Volume control

30 Native Controls Volume control

31 Getting Content

32

33 Getting Content

34 Getting Content

35 //User initiated func userpresseddownload() { WKExtension.shared().isFrontmostTimeoutExtended = true let session = MyNSURLSessionDelegate.backgroundSession let task = session.downloadtask(with: contenturl) task.resume() }

36 //User initiated func userpresseddownload() { WKExtension.shared().isFrontmostTimeoutExtended = true let session = MyNSURLSessionDelegate.backgroundSession let task = session.downloadtask(with: contenturl) task.resume() }

37 //User initiated func userpresseddownload() { WKExtension.shared().isFrontmostTimeoutExtended = true let session = MyNSURLSessionDelegate.backgroundSession let task = session.downloadtask(with: contenturl) task.resume() }

38 class DownloadManager : NSObject, URLSessionTaskDelegate, URLSessionDownloadDelegate { func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didwritedata byteswritten: Int64, totalbyteswritten: Int64, totalbytesexpectedtowrite: Int64) { if totalbytesexpectedtowrite > 0 { let progress = Float(totalBytesWritten) / Float(totalBytesExpectedToWrite) // Update UI showing progress } } func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didfinishdownloadingto location: URL) { // Manage file // Post notification alerting user of playback opportunity } func urlsession(_ session: URLSession, task: URLSessionTask, didcompletewitherror error: Error?) { // Clean up state, handle errors if there are any } }

39 class DownloadManager : NSObject, URLSessionTaskDelegate, URLSessionDownloadDelegate { func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didwritedata byteswritten: Int64, totalbyteswritten: Int64, totalbytesexpectedtowrite: Int64) { if totalbytesexpectedtowrite > 0 { let progress = Float(totalBytesWritten) / Float(totalBytesExpectedToWrite) // Update UI showing progress } } func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didfinishdownloadingto location: URL) { // Manage file // Post notification alerting user of playback opportunity } func urlsession(_ session: URLSession, task: URLSessionTask, didcompletewitherror error: Error?) { // Clean up state, handle errors if there are any } }

40 class DownloadManager : NSObject, URLSessionTaskDelegate, URLSessionDownloadDelegate { func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didwritedata byteswritten: Int64, totalbyteswritten: Int64, totalbytesexpectedtowrite: Int64) { if totalbytesexpectedtowrite > 0 { let progress = Float(totalBytesWritten) / Float(totalBytesExpectedToWrite) // Update UI showing progress } } func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didfinishdownloadingto location: URL) { // Manage file // Post notification alerting user of playback opportunity } func urlsession(_ session: URLSession, task: URLSessionTask, didcompletewitherror error: Error?) { // Clean up state, handle errors if there are any } }

41 class DownloadManager : NSObject, URLSessionTaskDelegate, URLSessionDownloadDelegate { func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didwritedata byteswritten: Int64, totalbyteswritten: Int64, totalbytesexpectedtowrite: Int64) { if totalbytesexpectedtowrite > 0 { let progress = Float(totalBytesWritten) / Float(totalBytesExpectedToWrite) // Update UI showing progress } } func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didfinishdownloadingto location: URL) { // Manage file // Post notification alerting user of playback opportunity } func urlsession(_ session: URLSession, task: URLSessionTask, didcompletewitherror error: Error?) { // Clean up state, handle errors if there are any } }

42 class DownloadManager : NSObject, URLSessionTaskDelegate, URLSessionDownloadDelegate { func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didwritedata byteswritten: Int64, totalbyteswritten: Int64, totalbytesexpectedtowrite: Int64) { if totalbytesexpectedtowrite > 0 { let progress = Float(totalBytesWritten) / Float(totalBytesExpectedToWrite) // Update UI showing progress } } func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didfinishdownloadingto location: URL) { // Manage file // Post notification alerting user of playback opportunity } func urlsession(_ session: URLSession, task: URLSessionTask, didcompletewitherror error: Error?) { // Clean up state, handle errors if there are any } }

43 Getting Content

44 Getting Content WatchConnectivity

45 WatchConnectivity

46 WatchConnectivity Transfer file API

47 WatchConnectivity Transfer file API Progress

48 // Progress property open class WCSessionFileTransfer : NSObject { open var file: WCSessionFile { get 12.0, *) open var progress: Progress { get } open var istransferring: Bool { get } } open func cancel()

49 // Progress property NEW open class WCSessionFileTransfer : NSObject { open var file: WCSessionFile { get 12.0, *) open var progress: Progress { get } open var istransferring: Bool { get } } open func cancel()

50 // User initiated download if let transfer: WCSessionFileTransfer = filetransfer { } transferprogressview.observedprogress = transfer.progress 27

51 // User initiated download if let transfer: WCSessionFileTransfer = filetransfer { } transferprogressview.observedprogress = transfer.progress 27

52 // User initiated download if let transfer: WCSessionFileTransfer = filetransfer { } transferprogressview.observedprogress = transfer.progress SimpleWatchConnectivity Sample Code 27

53 Which one do we use?

54 URLSession

55 URLSession User initiated on Apple Watch

56 URLSession User initiated on Apple Watch Use waitsforconnectivity instead of SCNetworkReachability

57 URLSession User initiated on Apple Watch Use waitsforconnectivity instead of SCNetworkReachability Requests are proxied through iphone, when in range

58 URLSession User initiated on Apple Watch Use waitsforconnectivity instead of SCNetworkReachability Requests are proxied through iphone, when in range Advances in Networking, Part 2 WWDC 2017

59 WatchConnectivity

60 WatchConnectivity Initiated on iphone

61 WatchConnectivity Initiated on iphone No need to request from your server again

62 Set Expectations

63 Set Expectations Instruct your user

64 Set Expectations Instruct your user On the magnetic charger

65

66

67 Local Playback

68

69

70 WatchKit

71 WatchKit presentmediaplayercontroller(with: options:completion:)

72 WatchKit presentmediaplayercontroller(with: options:completion:) WKAudioFileQueuePlayer

73 WatchKit presentmediaplayercontroller(with: options:completion:) WKAudioFileQueuePlayer WKAudioFilePlayerItem

74

75 Playback WKAudioFileQueuePlayer

76

77 AVFoundation

78 AVFoundation AVAudioPlayer

79 AVFoundation AVAudioPlayer AVAudioEngine

80 AVFoundation AVAudioPlayer AVAudioEngine Playback Background run mode Foreground, screen on

81

82 Audio Playback Background Mode NEW

83 Background Playback NEW

84 Background Playback NEW AVFoundation

85 Background Playback NEW AVFoundation Route picking

86 Background Playback NEW AVFoundation Route picking MediaPlayer.framework

87 Background Playback NEW AVFoundation Route picking MediaPlayer.framework Restricted to Bluetooth routes just like Music, Podcasts, and Radio

88 Background Playback

89 Background Playback Audio Info.plist key

90 Background Playback Audio Info.plist key Set up your session

91 Background Playback Audio Info.plist key Set up your session Route picking

92 Background Playback Audio Info.plist key Set up your session Route picking Play!

93 Background Playback Audio Info.plist key Set up your session Route picking Play! Handle playback

94

95 Local Playback

96 Local Playback Set routesharingpolicy to longform on AVAudioSession

97 Local Playback Set routesharingpolicy to longform on AVAudioSession Call new activate(withoptions:completion:) method on AVAudioSession

98 Local Playback Set routesharingpolicy to longform on AVAudioSession Call new activate(withoptions:completion:) method on AVAudioSession On completion, call play()

99

100 Route Picker

101 Route Picker Async activate()

102 Route Picker Async activate()

103 Route Picker Async activate() completion()

104 // Setup AVAudioSession func setupaudiosession() throws { try AVAudioSession.sharedInstance().setCategory( AVAudioSessionCategoryPlayback, mode: AVAudioSessionModeDefault, routesharingpolicy:.longform, options: [] ) }

105 // Setup AVAudioSession func setupaudiosession() throws { try AVAudioSession.sharedInstance().setCategory( AVAudioSessionCategoryPlayback, mode: AVAudioSessionModeDefault, routesharingpolicy:.longform, options: [] ) }

106 // Activate session, display route picker, func userpressedplay() { AVAudioSession.sharedInstance().activate(options: []) { (error: Error?) in if let error = error { print(error) } else { self.player?.play() } } }

107 // Activate session, display route picker, func userpressedplay() { AVAudioSession.sharedInstance().activate(options: []) { (error: Error?) in if let error = error { print(error) } else { self.player?.play() } } }

108 // Activate session, display route picker, func userpressedplay() { AVAudioSession.sharedInstance().activate(options: []) { (error: Error?) in if let error = error { print(error) } else { self.player?.play() } } }

109 Background Playback Routes

110 Background Playback Routes Apple wireless chip, W1

111 Background Playback Routes Apple wireless chip, W1 Bluetooth headphones

112 Background Playback Route picker Route picker details

113 Background Playback Route picker Route picker details If user has an active route, the route picker will select that automatically on your behalf

114 Background Playback Route picker Route picker details If user has an active route, the route picker will select that automatically on your behalf Takes active W1 route from iphone

115 Background Playback Route picker Route picker details If user has an active route, the route picker will select that automatically on your behalf Takes active W1 route from iphone - Unless iphone has more priority

116 Background Playback Route picker Route picker details If user has an active route, the route picker will select that automatically on your behalf Takes active W1 route from iphone - Unless iphone has more priority If no active routes, route picker will appear

117 Background Playback Playback Playback AVAudioPlayer AVAudioEngine Formats supported AAC-LC, AAC-ELD, HE-AAC, HE-AACv2, MP3 (decoding only), Opus

118 Background Playback Power Only play audio when necessary AVAudioEngine autoshutdownenabled on by default

119 Background Playback MediaPlayer.framework

120 Background Playback MediaPlayer.framework Provide Now Playing information

121 Background Playback MediaPlayer.framework Provide Now Playing information Now Playing UI will update

122 Background Playback MediaPlayer.framework Provide Now Playing information Now Playing UI will update Handle events

123 // Providing Now Playing information fileprivate let nowplayinginfocenter = MPNowPlayingInfoCenter.default() var nowplayinginfo = [String: Any]() let image = UIImage(data: artworkdata)?? UIImage() let artwork = MPMediaItemArtwork(boundsSize: image.size, requesthandler: { (_) -> UIImage in }) return image nowplayinginfo[mpmediaitempropertytitle] = title nowplayinginfo[mpmediaitempropertyalbumtitle] = album nowplayinginfo[mpmediaitempropertyartwork] = artwork nowplayinginfocenter.nowplayinginfo = nowplayinginfo

124 // Providing Now Playing information fileprivate let nowplayinginfocenter = MPNowPlayingInfoCenter.default() var nowplayinginfo = [String: Any]() let image = UIImage(data: artworkdata)?? UIImage() let artwork = MPMediaItemArtwork(boundsSize: image.size, requesthandler: { (_) -> UIImage in }) return image nowplayinginfo[mpmediaitempropertytitle] = title nowplayinginfo[mpmediaitempropertyalbumtitle] = album nowplayinginfo[mpmediaitempropertyartwork] = artwork nowplayinginfocenter.nowplayinginfo = nowplayinginfo

125 // Providing Now Playing information fileprivate let nowplayinginfocenter = MPNowPlayingInfoCenter.default() var nowplayinginfo = [String: Any]() let image = UIImage(data: artworkdata)?? UIImage() let artwork = MPMediaItemArtwork(boundsSize: image.size, requesthandler: { (_) -> UIImage in }) return image nowplayinginfo[mpmediaitempropertytitle] = title nowplayinginfo[mpmediaitempropertyalbumtitle] = album nowplayinginfo[mpmediaitempropertyartwork] = artwork nowplayinginfocenter.nowplayinginfo = nowplayinginfo

126 // Providing Now Playing information fileprivate let nowplayinginfocenter = MPNowPlayingInfoCenter.default() var nowplayinginfo = [String: Any]() let image = UIImage(data: artworkdata)?? UIImage() let artwork = MPMediaItemArtwork(boundsSize: image.size, requesthandler: { (_) -> UIImage in }) return image nowplayinginfo[mpmediaitempropertytitle] = title nowplayinginfo[mpmediaitempropertyalbumtitle] = album nowplayinginfo[mpmediaitempropertyartwork] = artwork nowplayinginfocenter.nowplayinginfo = nowplayinginfo

127 // Providing Now Playing information fileprivate let nowplayinginfocenter = MPNowPlayingInfoCenter.default() var nowplayinginfo = [String: Any]() let image = UIImage(data: artworkdata)?? UIImage() let artwork = MPMediaItemArtwork(boundsSize: image.size, requesthandler: { (_) -> UIImage in }) return image nowplayinginfo[mpmediaitempropertytitle] = title nowplayinginfo[mpmediaitempropertyalbumtitle] = album nowplayinginfo[mpmediaitempropertyartwork] = artwork nowplayinginfocenter.nowplayinginfo = nowplayinginfo

128

129

130 Background Playback Media remote Use MediaPlayer.framework Handle commands however you wish

131 class RemoteCommandManager: NSObject { // Reference of `MPRemoteCommandCenter` used to configure and // setup remote control events in the application. fileprivate let remotecommandcenter = MPRemoteCommandCenter.shared() }

132 class RemoteCommandManager: NSObject { // Reference of `MPRemoteCommandCenter` used to configure and // setup remote control events in the application. fileprivate let remotecommandcenter = MPRemoteCommandCenter.shared() }

133 // Example providing a MediaRemote command func enableskipforwardcommand(interval: Int = 15) { remotecommandcenter.skipforwardcommand.preferredintervals = [NSNumber(value: interval)] remotecommandcenter.skipforwardcommand.addtarget(self, action: #selector(remotecommandmanager. handleskipforwardcommandevent(event:))) remotecommandcenter.skipforwardcommand.isenabled = true } 61

134 // Example providing a MediaRemote command func enableskipforwardcommand(interval: Int = 15) { remotecommandcenter.skipforwardcommand.preferredintervals = [NSNumber(value: interval)] remotecommandcenter.skipforwardcommand.addtarget(self, action: #selector(remotecommandmanager. handleskipforwardcommandevent(event:))) remotecommandcenter.skipforwardcommand.isenabled = true } 61

135 // Example providing a MediaRemote command func enableskipforwardcommand(interval: Int = 15) { remotecommandcenter.skipforwardcommand.preferredintervals = [NSNumber(value: interval)] remotecommandcenter.skipforwardcommand.addtarget(self, action: #selector(remotecommandmanager. handleskipforwardcommandevent(event:))) remotecommandcenter.skipforwardcommand.isenabled = true } MPRemoteCommandSample Sample Code 61

136

137 Audio Experience

138 Audio Experience Auto launch Frontmost App state Notifications Shortcuts

139

140

141

142

143

144

145 Auto Launch

146 Auto Launch Auto launch Audio Apps

147 Auto Launch Auto launch Audio Apps Now Playing session on iphone brings Apple Watch app frontmost

148 Auto Launch Auto launch Audio Apps Now Playing session on iphone brings Apple Watch app frontmost Stays frontmost for duration of the session

149 Auto Launch Now Playing session API

150 Auto Launch Now Playing session API You will know when you re launched for a Now Playing session on iphone

151 Auto Launch Now Playing session API You will know when you re launched for a Now Playing session on iphone Take your user directly to the view

152 Auto Launch Now Playing session API You will know when you re launched for a Now Playing session on iphone Take your user directly to the view Use handleremotenowplayingactivity() on WKExtensionDelegate

153 class ExtensionDelegate: NSObject, WKExtensionDelegate { func handleremotenowplayingactivity() { // Get visible controller let visiblecontroller = WKExtension.shared().visibleInterfaceController if (visiblecontroller?.iskind(of: RemoteControlInterfaceController.self)?? false { // User is already at our NowPlaying UI. Log this condition } else { WKInterfaceController.reloadRootPageControllers( withnames: [ remotecontrolinterfacecontroller"], contexts: nil, orientation:.horizontal, pageindex: 0) } } }

154 class ExtensionDelegate: NSObject, WKExtensionDelegate { func handleremotenowplayingactivity() { // Get visible controller let visiblecontroller = WKExtension.shared().visibleInterfaceController if (visiblecontroller?.iskind(of: RemoteControlInterfaceController.self)?? false { // User is already at our NowPlaying UI. Log this condition } else { WKInterfaceController.reloadRootPageControllers( withnames: [ remotecontrolinterfacecontroller"], contexts: nil, orientation:.horizontal, pageindex: 0) } } }

155 class ExtensionDelegate: NSObject, WKExtensionDelegate { func handleremotenowplayingactivity() { // Get visible controller let visiblecontroller = WKExtension.shared().visibleInterfaceController if (visiblecontroller?.iskind(of: RemoteControlInterfaceController.self)?? false { // User is already at our NowPlaying UI. Log this condition } else { WKInterfaceController.reloadRootPageControllers( withnames: [ remotecontrolinterfacecontroller"], contexts: nil, orientation:.horizontal, pageindex: 0) } } }

156 class ExtensionDelegate: NSObject, WKExtensionDelegate { func handleremotenowplayingactivity() { // Get visible controller let visiblecontroller = WKExtension.shared().visibleInterfaceController if (visiblecontroller?.iskind(of: RemoteControlInterfaceController.self)?? false { // User is already at our NowPlaying UI. Log this condition } else { WKInterfaceController.reloadRootPageControllers( withnames: [ remotecontrolinterfacecontroller"], contexts: nil, orientation:.horizontal, pageindex: 0) } } }

157 Auto Launch Opt out

158 Auto Launch Opt out App can opt out

159 Auto Launch Opt out App can opt out Do the right thing

160 Auto Launch Opt out App can opt out Do the right thing Info.plist key

161 Auto Launch Opt out App can opt out Do the right thing Info.plist key Now Playing app will show if you have opted out

162 Active

163

164 Frontmost

165 Frontmost Background

166 Frontmost App State

167 Frontmost App State WatchConnectivity resumes

168 Frontmost App State WatchConnectivity resumes URLSession resumes

169 Frontmost App State WatchConnectivity resumes URLSession resumes Frontmost notification

170 Frontmost App State WatchConnectivity resumes URLSession resumes Frontmost notification Haptics

171 Frontmost App State WatchConnectivity resumes URLSession resumes Frontmost notification Haptics The Life of a watchos App WWDC 2017

172

173

174 Audio Experience Frontmost

175 Audio Experience Frontmost Kept frontmost while playing audio

176 Audio Experience Frontmost Kept frontmost while playing audio User navigates away

177 Audio Experience Frontmost Kept frontmost while playing audio User navigates away Background playback still occurs

178 Audio Experience Frontmost Kept frontmost while playing audio User navigates away Background playback still occurs Properly handle background events

179 Audio Experience Notifications

180 Audio Experience Notifications Content available local notification

181 Audio Experience Notifications Content available local notification Play option as the primary action

182 10:09 Audio Experience TOUR GUIDE Notifications Ready! Content available local notification Play option as the primary action Configuration step

183 10:09 Audio Experience TOUR GUIDE Notifications Ready! Content available local notification Play option as the primary action Configuration step What s New in watchos WWDC 2018

184 class DownloadManager : NSObject, URLSessionTaskDelegate, URLSessionDownloadDelegate { func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didwritedata byteswritten: Int64, totalbyteswritten: Int64, totalbytesexpectedtowrite: Int64) { if totalbytesexpectedtowrite > 0 { let progress = Float(totalBytesWritten) / Float(totalBytesExpectedToWrite) // Update UI showing progress } } func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didfinishdownloadingto location: URL) { // Manage file // Post notification alerting user of playback opportunity } func urlsession(_ session: URLSession, task: URLSessionTask, didcompletewitherror error: Error?) { // Clean up state, handle errors if there are any } }

185 class DownloadManager : NSObject, URLSessionTaskDelegate, URLSessionDownloadDelegate { func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didwritedata byteswritten: Int64, totalbyteswritten: Int64, totalbytesexpectedtowrite: Int64) { if totalbytesexpectedtowrite > 0 { let progress = Float(totalBytesWritten) / Float(totalBytesExpectedToWrite) // Update UI showing progress } } func urlsession(_ session: URLSession, downloadtask: URLSessionDownloadTask, didfinishdownloadingto location: URL) { // Manage file // Post notification alerting user of playback opportunity } func urlsession(_ session: URLSession, task: URLSessionTask, didcompletewitherror error: Error?) { // Clean up state, handle errors if there are any } }

186 Audio Experience Frontmost notifications

187 Audio Experience Frontmost notifications func usernotificationcenter(_ center: UNUserNotificationCenter, willpresent notification: UNNotification, withcompletionhandler (UNNotificationPresentationOptions) -> Void)

188 Audio Experience Frontmost notifications func usernotificationcenter(_ center: UNUserNotificationCenter, willpresent notification: UNNotification, withcompletionhandler (UNNotificationPresentationOptions) -> Void) Play haptic

189 Audio Experience Frontmost notifications func usernotificationcenter(_ center: UNUserNotificationCenter, willpresent notification: UNNotification, withcompletionhandler (UNNotificationPresentationOptions) -> Void) Play haptic Life of a watchos App WWDC 2017

190

191

192 Donations User Action INMediaPlaybackIntent

193

194 Making a Great Experience MuseumTour Dalí exhibit MuseumTour Play Audio tour coming soon Glanceable Information Tappable Actions

195 Audio Experience Shortcuts

196 Audio Experience Shortcuts Donate INMediaPlaybackIntent

197 Audio Experience Shortcuts Donate INMediaPlaybackIntent Relevant shortcut API

198 Audio Experience Shortcuts Donate INMediaPlaybackIntent Relevant shortcut API Shortcut phrases

199 Audio Experience Shortcuts Donate INMediaPlaybackIntent Relevant shortcut API Shortcut phrases Introduction to Siri Shortcuts WWDC 2018 Building for Voice with Siri Shortcuts WWDC 2018 Shortcuts on the Siri Watch Face WWDC 2018

200 Summary

201 Summary Native controls

202 Summary Native controls Background playback

203 Summary Native controls Background playback Progress

204 More Information watchos Runtime and Connectivity Lab Technology Lab 9 Thursday 12:00PM

205

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

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

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

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

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

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

Using and Extending the Xcode Source Editor

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

More information

Enhancing your apps for the next dimension of touch

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

More information

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

Delivering an Exceptional Audio Experience

Delivering an Exceptional Audio Experience Media #WWDC16 Delivering an Exceptional Audio Experience A guide to audio best practices and APIs Session 507 Saleem Mohammed Audio Craftsman Doug Wyatt Audio Plumber 2016 Apple Inc. All rights reserved.

More information

Introduction to Siri Shortcuts

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

More information

Media Playback and Recording. CS193W - Spring Lecture 3

Media Playback and Recording. CS193W - Spring Lecture 3 Media Playback and Recording CS193W - Spring 2016 - Lecture 3 Today Images and animated images Text input controller Media playback controller Inline video playback Playing extended audio Recording audio

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

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

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

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

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

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

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

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

Creating Complications with ClockKit Session 209

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

More information

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

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

ITP 342 Mobile App Dev. Audio

ITP 342 Mobile App Dev. Audio ITP 342 Mobile App Dev Audio File Formats and Data Formats 2 pieces to every audio file: file format (or audio container) data format (or audio encoding) File formats describe the format of the file itself

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

Introduction to WatchKit. CS193W - Spring Lecture 1

Introduction to WatchKit. CS193W - Spring Lecture 1 Introduction to WatchKit CS193W - Spring 2016 - Lecture 1 appleᴡᴀᴛᴄʜ Released April 24, 2015 No updates to the hardware yet. Three collections, over 30 models Two sizes The Screen OLED (organic light-emitting

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

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

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

Implementing UI Designs in Interface Builder

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

More information

Mastering 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

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

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

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

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

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

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

Modern User Interaction on ios

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

More information

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

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

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

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

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

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

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

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

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

ITP 342 Mobile App Dev. Audio

ITP 342 Mobile App Dev. Audio ITP 342 Mobile App Dev Audio File Formats and Data Formats 2 pieces to every audio file: file format (or audio container) data format (or audio encoding) File formats describe the format of the file itself

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

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

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

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

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

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

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

Multimedia. Mobile Application Development in ios School of EECS Washington State University Instructor: Larry Holder Multimedia Mobile Application Development in ios School of EECS Washington State University Instructor: Larry Holder Mobile Application Development in ios 1 Outline Audio recording, access, and playback

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

Audio Unit Extensions

Audio Unit Extensions Media #WWDC15 Audio Unit Extensions Session 508 Doug Wyatt Core Audio Plumber 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

More information

Proloquo2Go for Apple Watch Tutorial

Proloquo2Go for Apple Watch Tutorial Getting started with Proloquo2Go for Apple Watch Requirements Note that you need watchos 2 or later on your Apple Watch and ios 9 or later on your iphone to have access to Proloquo2Go for Apple Watch,

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

BLUETOOTH HANDSFREELINK (HFL)

BLUETOOTH HANDSFREELINK (HFL) BLUETOOTH HANDSFREELINK (HFL) Learn how to operate the vehicle s hands-free calling system. Color Audio System Basic HFL Operation Make and receive phone calls using the vehicle s audio system, without

More information

What s New in Cocoa for macos

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

More information

CS193P - Lecture 16. iphone Application Development. Audio APIs Video Playback Displaying Web Content Settings

CS193P - Lecture 16. iphone Application Development. Audio APIs Video Playback Displaying Web Content Settings CS193P - Lecture 16 iphone Application Development Audio APIs Video Playback Displaying Web Content Settings 1 Today s Topics Audio APIs Video Playback Settings Bundles 2 Audio Playback 3 Uses for Audio

More information

Validating HTTP Live Streams

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

More information

AUDIO AND CONNECTIVITY

AUDIO AND CONNECTIVITY AUDIO AND CONNECTIVITY Learn how to operate the vehicle s audio system. Basic Audio Operation Connect audio devices and operate buttons and displays for the audio system. USB Connection Connect a USB flash

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

lecture 6 Closures, Networking, CocoaPods

lecture 6 Closures, Networking, CocoaPods lecture 6 Closures, Networking, CocoaPods cs198-001 : spring 2018 announcements no new lab this week - continuation of Pokedex lab + custom app workday (attendance still required) Pokedex due Wednesday

More information

HLS Authoring Update. Media #WWDC17. Eryk Vershen, AVFoundation Engineer

HLS Authoring Update. Media #WWDC17. Eryk Vershen, AVFoundation Engineer Session Media #WWDC17 HLS Authoring Update 515 Eryk Vershen, AVFoundation Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

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

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

Introducing the Contacts Framework

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

More information

Adapting to the New UI of OS X Yosemite

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

More information

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

AUDIO AND CONNECTIVITY

AUDIO AND CONNECTIVITY AUDIO AND CONNECTIVITY Learn how to operate the vehicle s audio system. Basic Audio Operation Connect audio devices and operate buttons and displays for the audio system. USB Port Connect a USB flash drive

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

Networking with NSURLSession

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

More information

Kony Visualizer. Wearables Developer's Guide

Kony Visualizer. Wearables Developer's Guide Kony Visualizer Wearables Developer's Guide Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated on

More information

Copyright

Copyright 1 top considerations for creating a release CHECK LIST for mobile app testing Application Installation/Update Application Sign Up & Log in Mobile interruptions Battery Consumption Mobile memory utilization

More information

STEP 1: DOWNLOAD THE PROGRAM

STEP 1: DOWNLOAD THE PROGRAM STEP 1: DOWNLOAD THE PROGRAM Note: The screen shots in this documents are using a Windows 7 operating system, images may be different on other versions and operating systems. A current version of Java

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

USER GUIDE. Apple CarPlay

USER GUIDE. Apple CarPlay USER GUIDE Available on select models, seamlessly integrates your iphone with your vehicle s MAZDA CONNECT display, allowing you to access useful features and apps while staying focused on the road ahead.

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

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

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

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

Smart Music Control Application

Smart Music Control Application Smart Music Control Application JVC KENWOOD Corporation 2015 Smart Music Control Application User Guide 2014 JVC KENWOOD Corporation CONTENTS CONTENTS 2 GETTING STARTED 1 Installing Smart Music Control

More information

Apple Watch Docs. Release 0.1. Michael Hahn

Apple Watch Docs. Release 0.1. Michael Hahn Apple Watch Docs Release 0.1 Michael Hahn Nov 20, 2017 Contents 1 First Watch Glance 3 1.1 Create an iphone App.......................................... 3 1.2 Add WatchKit Targets..........................................

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

} override func didreceivememorywarning() { 26 super.didreceivememorywarning() 27 } 28 } Pause Stop

} override func didreceivememorywarning() { 26 super.didreceivememorywarning() 27 } 28 } Pause Stop Chapter 30 30.1 App App MP3 Don t Download This Song [1] Finder MP3 Xcode UI 1 import UIKit 2 import AVFoundation 3 4 class ViewController: UIViewController { 5 6 var player: AVAudioPlayer? 7 8 override

More information

Taking Your iphone to

Taking Your iphone to Taking Your iphone to the Max, ios 5 Edition -"-I f.6>. ii "VS Michael Grothaus Steve Sande Erica Sadun Apress* Contents Contents at a Glance About the Authors About the Technical Reviewer iv xiv xv Part

More information

Display Audio System AUDIO AND CONNECTIVITY. Use simple gestures-including touching, swiping and scrolling-to operate certain audio functions.

Display Audio System AUDIO AND CONNECTIVITY. Use simple gestures-including touching, swiping and scrolling-to operate certain audio functions. Display Audio System Use simple gestures-including touching, swiping and scrolling-to operate certain audio functions. Some items may be grayed out during driving to reduce the potential for distraction.

More information

Kony Visualizer. Wearables Developer's Guide

Kony Visualizer. Wearables Developer's Guide Kony Visualizer Wearables Developer's Guide Release 7.0 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated on

More information

ios Memory Deep Dive #WWDC18 Kyle Howarth, Software Engineer James Snee, Software Engineer Kris Markel, Software Engineer

ios Memory Deep Dive #WWDC18 Kyle Howarth, Software Engineer James Snee, Software Engineer Kris Markel, Software Engineer Session #WWDC18 ios Memory Deep Dive 416 Kyle Howarth, Software Engineer James Snee, Software Engineer Kris Markel, Software Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display

More information

KENWOOD Remote Application. JVCKENWOOD Corporation. User Guide. Caution: Do not operate any function that takes your attention away from safe driving.

KENWOOD Remote Application. JVCKENWOOD Corporation. User Guide. Caution: Do not operate any function that takes your attention away from safe driving. KENWOOD Remote Application JVCKENWOOD Corporation KENWOOD Remote Application User Guide Caution: Do not operate any function that takes your attention away from safe driving. CONTENTS GETTING STARTED 1

More information

How To Change Ipod To Manually Manage Music Without Erasing

How To Change Ipod To Manually Manage Music Without Erasing How To Change Ipod To Manually Manage Music Without Erasing Select 'manually manage music' and create a playlist by adding the songs you adds all the songs to your ipod without deleting the other songs

More information

AUDIO AND CONNECTIVITY

AUDIO AND CONNECTIVITY AUDIO AND CONNECTIVITY Learn how to operate the vehicle s audio system. Basic Audio Operation Connect audio devices and operate the audio system. USB Port Connect a USB flash drive or other audio device,

More information

MyTeleMed iphone User Guide

MyTeleMed iphone User Guide Table of Contents Log In 2 Incorrect Login Information 2 Registering your iphone 2 Main Menu 3 Messages 3 Compose a New Message 4 Message Recipients 4 Archiving Messages 4 Message Detail 5 Add Comments

More information

S1 Smart Watch APPS GUIDE. Models: S1, S1C & S1 PLUS

S1 Smart Watch APPS GUIDE. Models: S1, S1C & S1 PLUS S1 Smart Watch APPS GUIDE Models: S1, S1C & S1 PLUS SETTINGS The settings app in the S1 allows you to make adjustments on all local settings on the watch. You can change the look of the screen, sound and

More information