Introducing Swift Playgrounds

Size: px
Start display at page:

Download "Introducing Swift Playgrounds"

Transcription

1 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 Izzy Fraimow Playgrounds Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

2

3

4

5

6

7

8

9

10 1024 x 768

11 1024 x 768

12

13

14 Using Swift Playgrounds

15 Using Swift Playgrounds Authoring for Swift Playgrounds

16 Using Swift Playgrounds Authoring for Swift Playgrounds Growing and Exploring

17 Using Swift Playgrounds Maxwell Swadling Playgrounds Engineer

18

19

20 Playground Markup

21

22 Source Code

23

24 Code Completion

25

26 Undo/Redo

27

28 Shortcuts

29

30 Live View

31

32 Run Button

33

34 Documents

35

36 Table of Contents

37

38 Page Navigation

39

40 Library

41

42 Tools Menu

43

44

45 Snippets

46

47 Images

48

49 Files

50

51

52 Demo Using Swift Playgrounds

53 Authoring for Swift Playgrounds Jonathan Penn Playgrounds Engineer

54

55

56

57 Chapters / Pages Chapter: Commands Introduction Issuing Commands Chapter: Functions Introduction Composing a New Behavior

58 Chapters / Pages Chapter: Commands Introduction Issuing Commands Chapter: Functions Introduction Composing a New Behavior

59 Cutscenes

60 Cutscenes

61 Glossary

62 Glossary

63 Glossary

64 Editable Regions

65 Editable Regions func /*#-editable-code*/ <#funcname#> /*#-end-editable-code*/() { //#-editable-code Add commands to your function //#-end-editable-code } //#-editable-code Tap to enter code //#-end-editable-code

66 Hidden Code

67 Hidden Code //#-hidden-code yoursetupfunction() //#-end-hidden-code

68 Configurable Code Completion

69 Configurable Code Completion //#-code-completion(everything, hide) //#-code-completion(currentmodule, show) //#-code-completion(identifier, show, moveforward(), turnleft())

70 Always-On Live View

71 Always-On Live View

72 Hints

73 Hints

74 Assessment

75 Assessment

76 Assessment

77 Assessment

78 // Key/Value Store import PlaygroundSupport let store = PlaygroundPage.current.keyValueStore store["greeting"] =.string("hello, WWDC!") if case let.string(greeting)? = store["greeting"] { print(greeting) // "Hello, WWDC!" }

79 Resettable

80 Resettable

81 Resettable

82 Resettable

83 Resettable

84 Resettable

85 Documented apple.com

86

87 1024 x 768

88 Demo Authoring for Swift Playgrounds

89

90 MyFirst.playgroundbook

91

92 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

93 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

94 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

95 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

96 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

97 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

98 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

99 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

100 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

101 Page Manifest Key Type Value Root Dictionary Name String Introduction LiveViewMode String VisibleByDefault PosterReference String LiveViewPoster.png LiveViewEdgeToEdge Boolean YES PlaygroundLoggingMode String Off

102

103 Name = Introduction

104

105 LiveViewMode = VisibleByDefault

106

107 PosterReference = LiveViewPoster.png

108

109

110 LiveViewEdgeToEdge = YES

111

112 LiveViewEdgeToEdge = NO

113

114 PlaygroundLoggingMode = Off

115 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

116 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

117

118 Contents.swift

119 // Contents.swift /*: Instructions about the page... */ //#-hidden-code import PlaygroundSupport func say(_ message: String) { let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { proxy.send(.string(message)) } } //#-end-hidden-code say(/*#-editable-code*/"<#knock, knock!#>"/*#-end-editable-code*/)

120 // Contents.swift /*: Instructions about the page... */ //#-hidden-code import PlaygroundSupport func say(_ message: String) { let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { proxy.send(.string(message)) } } //#-end-hidden-code say(/*#-editable-code*/"<#knock, knock!#>"/*#-end-editable-code*/)

121 // Contents.swift /*: Instructions about the page... */ //#-hidden-code import PlaygroundSupport func say(_ message: String) { let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { proxy.send(.string(message)) } } //#-end-hidden-code say(/*#-editable-code*/"<#knock, knock!#>"/*#-end-editable-code*/)

122 // Contents.swift /*: Instructions about the page... */ //#-hidden-code import PlaygroundSupport func say(_ message: String) { let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { proxy.send(.string(message)) } } //#-end-hidden-code say(/*#-editable-code*/"<#knock, knock!#>"/*#-end-editable-code*/)

123 // Contents.swift /*: Instructions about the page... */ //#-hidden-code import PlaygroundSupport func say(_ message: String) { let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { proxy.send(.string(message)) } } //#-end-hidden-code say(/*#-editable-code*/"<#knock, knock!#>"/*#-end-editable-code*/)

124 // Contents.swift /*: Instructions about the page... */ //#-hidden-code import PlaygroundSupport func say(_ message: String) { let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { proxy.send(.string(message)) } } //#-end-hidden-code say(/*#-editable-code*/"<#knock, knock!#>"/*#-end-editable-code*/)

125 // Contents.swift /*: Instructions about the page... */ //#-hidden-code import PlaygroundSupport func say(_ message: String) { let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { proxy.send(.string(message)) } } //#-end-hidden-code say(/*#-editable-code*/"<#knock, knock!#>"/*#-end-editable-code*/)

126

127 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

128 // LiveView.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController()

129 // LiveView.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController()

130 // LiveView.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController()

131 // LiveView.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController()

132 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

133 import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController()

134 Contents.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController()

135 Contents.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController() In main process

136 Contents.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController() In main process Only active while running

137 Contents.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController() In main process Only active while running

138 Contents.swift LiveView.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController() import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController() In main process Only active while running

139 Contents.swift LiveView.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController() import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController() In main process Separate process Only active while running

140 Contents.swift LiveView.swift import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController() import PlaygroundSupport let page = PlaygroundPage.current page.liveview = FaceViewController() In main process Only active while running Separate process Running all the time

141 Main Process (Contents.swift) import PlaygroundSupport let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { let message: PlaygroundValue =.string("knock, knock!") proxy.send(message) }

142 Main Process (Contents.swift) import PlaygroundSupport let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { let message: PlaygroundValue =.string("knock, knock!") proxy.send(message) }

143 Main Process (Contents.swift) import PlaygroundSupport let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { let message: PlaygroundValue =.string("knock, knock!") proxy.send(message) }

144 Main Process (Contents.swift) import PlaygroundSupport let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { let message: PlaygroundValue =.string("knock, knock!") proxy.send(message) }

145 Main Process (Contents.swift) import PlaygroundSupport let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { let message: PlaygroundValue =.string("knock, knock!") proxy.send(message) }

146 Main Process (Contents.swift) import PlaygroundSupport let page = PlaygroundPage.current if let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy { let message: PlaygroundValue =.string("knock, knock!") proxy.send(message) }

147 Sending to the Live View Process Contents.swift Live View Proxy FaceViewController

148 Sending to the Live View Process Contents.swift Live View Proxy FaceViewController

149 Sending to the Live View Process Contents.swift Live View Proxy FaceViewController

150 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func receive(_ message: PlaygroundValue) { if case let.string(text) = message { processconversationline(text) } } }

151 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func receive(_ message: PlaygroundValue) { if case let.string(text) = message { processconversationline(text) } } }

152 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func receive(_ message: PlaygroundValue) { if case let.string(text) = message { processconversationline(text) } } }

153 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func receive(_ message: PlaygroundValue) { if case let.string(text) = message { processconversationline(text) } } }

154 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func receive(_ message: PlaygroundValue) { if case let.string(text) = message { processconversationline(text) } } }

155 Sending from the Live View Process Contents.swift Live View Proxy FaceViewController

156 Sending from the Live View Process? Contents.swift Live View Proxy FaceViewController

157 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func tapped() { let message: PlaygroundValue =.string("hello!") send(message) } }

158 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func tapped() { let message: PlaygroundValue =.string("hello!") send(message) } }

159 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func tapped() { let message: PlaygroundValue =.string("hello!") send(message) } }

160 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func tapped() { let message: PlaygroundValue =.string("hello!") send(message) } }

161 Live View Process (LiveView.swift) extension FaceViewController: PlaygroundLiveViewMessageHandler { public func tapped() { let message: PlaygroundValue =.string("hello!") send(message) } }

162 Sending from the Live View Process Contents.swift Live View Proxy FaceViewController

163 Sending from the Live View Process Contents.swift Live View Proxy FaceViewController

164 Sending from the Live View Process Contents.swift? Live View Proxy FaceViewController

165 Main Process (Contents.swift) let page = PlaygroundPage.current page.needsindefiniteexecution = true let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy class MyClassThatListens: PlaygroundRemoteLiveViewProxyDelegate { func remoteliveviewproxy(_ remoteliveviewproxy: PlaygroundRemoteLiveViewProxy, received message: PlaygroundValue) { if case let.string(text) = message { dosomethingwithstring(text) } } } let listener = MyClassThatListens() proxy?.delegate = listener

166 Main Process (Contents.swift) let page = PlaygroundPage.current page.needsindefiniteexecution = true let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy class MyClassThatListens: PlaygroundRemoteLiveViewProxyDelegate { func remoteliveviewproxy(_ remoteliveviewproxy: PlaygroundRemoteLiveViewProxy, received message: PlaygroundValue) { if case let.string(text) = message { dosomethingwithstring(text) } } } let listener = MyClassThatListens() proxy?.delegate = listener

167 Main Process (Contents.swift) let page = PlaygroundPage.current page.needsindefiniteexecution = true let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy class MyClassThatListens: PlaygroundRemoteLiveViewProxyDelegate { func remoteliveviewproxy(_ remoteliveviewproxy: PlaygroundRemoteLiveViewProxy, received message: PlaygroundValue) { if case let.string(text) = message { dosomethingwithstring(text) } } } let listener = MyClassThatListens() proxy?.delegate = listener

168 Main Process (Contents.swift) let page = PlaygroundPage.current page.needsindefiniteexecution = true let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy class MyClassThatListens: PlaygroundRemoteLiveViewProxyDelegate { func remoteliveviewproxy(_ remoteliveviewproxy: PlaygroundRemoteLiveViewProxy, received message: PlaygroundValue) { if case let.string(text) = message { dosomethingwithstring(text) } } } let listener = MyClassThatListens() proxy?.delegate = listener

169 Main Process (Contents.swift) let page = PlaygroundPage.current page.needsindefiniteexecution = true let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy class MyClassThatListens: PlaygroundRemoteLiveViewProxyDelegate { func remoteliveviewproxy(_ remoteliveviewproxy: PlaygroundRemoteLiveViewProxy, received message: PlaygroundValue) { if case let.string(text) = message { dosomethingwithstring(text) } } } let listener = MyClassThatListens() proxy?.delegate = listener

170 Main Process (Contents.swift) let page = PlaygroundPage.current page.needsindefiniteexecution = true let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy class MyClassThatListens: PlaygroundRemoteLiveViewProxyDelegate { func remoteliveviewproxy(_ remoteliveviewproxy: PlaygroundRemoteLiveViewProxy, received message: PlaygroundValue) { if case let.string(text) = message { dosomethingwithstring(text) } } } let listener = MyClassThatListens() proxy?.delegate = listener

171 Main Process (Contents.swift) let page = PlaygroundPage.current page.needsindefiniteexecution = true let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy class MyClassThatListens: PlaygroundRemoteLiveViewProxyDelegate { func remoteliveviewproxy(_ remoteliveviewproxy: PlaygroundRemoteLiveViewProxy, received message: PlaygroundValue) { if case let.string(text) = message { dosomethingwithstring(text) } } } let listener = MyClassThatListens() proxy?.delegate = listener

172 Main Process (Contents.swift) let page = PlaygroundPage.current page.needsindefiniteexecution = true let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy class MyClassThatListens: PlaygroundRemoteLiveViewProxyDelegate { func remoteliveviewproxy(_ remoteliveviewproxy: PlaygroundRemoteLiveViewProxy, received message: PlaygroundValue) { if case let.string(text) = message { dosomethingwithstring(text) } } } let listener = MyClassThatListens() proxy?.delegate = listener

173 Main Process (Contents.swift) let page = PlaygroundPage.current page.needsindefiniteexecution = true let proxy = page.liveview as? PlaygroundRemoteLiveViewProxy class MyClassThatListens: PlaygroundRemoteLiveViewProxyDelegate { func remoteliveviewproxy(_ remoteliveviewproxy: PlaygroundRemoteLiveViewProxy, received message: PlaygroundValue) { if case let.string(text) = message { dosomethingwithstring(text) } } } let listener = MyClassThatListens() proxy?.delegate = listener

174 Sending from the Live View Process Contents.swift Live View Proxy FaceViewController

175 Sending from the Live View Process Contents.swift Live View Proxy FaceViewController

176 Sending from the Live View Process Contents.swift Live View Proxy FaceViewController

177 // Playground Values public enum PlaygroundValue { case array([playgroundvalue]) case dictionary([string: PlaygroundValue]) case string(string) case data(data) case date(date) case integer(int) case floatingpoint(double) case boolean(bool) }

178 // Key/Value Store import PlaygroundSupport let store = PlaygroundPage.current.keyValueStore store["greeting"] =.string("hello, WWDC!") if case let.string(greeting)? = store["greeting"] { print(greeting) // "Hello, WWDC!" }

179 Contents.swift 1024 x 768

180 Contents.swift 1024 x 768 LiveView.swift

181 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

182 Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

183 Edits Contents Sources Resources Chapters Chapter1.playgroundchapter Pages Introduction.playgroundpage Manifest.plist Contents.swift LiveView.swift HowDoesItWork.playgroundpage

184

185 developer.apple.com

186 1024 x 768

187 Demo Growing and Exploring Izzy Fraimow Playgrounds Engineer

188 Swift Playgrounds Summary

189 Swift Playgrounds Summary Touch-focused experience for experimenting with Swift

190 Swift Playgrounds Summary Touch-focused experience for experimenting with Swift Rich new document format for creating engaging content

191 Swift Playgrounds Summary Touch-focused experience for experimenting with Swift Rich new document format for creating engaging content Powerful access to ios SDK

192 Playgrounds

193 More Information

194 Related Sessions Keynote Bill Graham Monday 10:00AM Platforms State of the Union Bill Graham Monday 2:30PM What s New in Swift Presidio Tuesday 9:00AM

195 Labs Swift Open Hours Swift Open Hours Creating Content for Swift Playgrounds Xcode Open Hours Xcode Open Hours Creating Content for Swift Playgrounds Developer Tools Lab A Developer Tools Lab A Dev Tools Lab C Developer Tools Labs B Developer Tools Labs C Dev Tools Lab C Tuesday 12:00PM Wednesday Friday 9:00AM Wednesday 12:00PM Wednesday 3:00PM Thursday 9:00AM Friday 12:00PM

196

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

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

Authoring Playground Books with Bluefruit for ios

Authoring Playground Books with Bluefruit for ios Authoring Playground Books with Bluefruit for ios Created by Trevor Beaton Last updated on 2018-08-22 04:04:08 PM UTC Guide Contents Guide Contents Overview What you should know before beginning: To create

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

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

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

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

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

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

Introducing the Modern WebKit API

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

More information

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

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

More information

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

Data Delivery with Drag and Drop

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

More information

Introducing Password AutoFill for Apps

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

More information

Designing for Apple Watch

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

More information

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

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

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

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

What s New in CloudKit

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

More information

Building Visually Rich User Experiences

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

More information

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

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

Thread Sanitizer and Static Analysis

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

More information

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

Advanced Debugging and the Address Sanitizer

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

More information

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

itunes Connect Development to distribution #WWDC15 Distribution Session 304

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

More information

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

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

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

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

More information

What s New in watchos

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

More information

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

Localizing with Xcode 9

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

More information

Creating Great App Previews

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

More information

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

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

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

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

More information

Integrating Apps and Content with AR Quick Look

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

More information

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 to Know Swift Package Manager

Getting to Know Swift Package Manager #WWDC18 Getting to Know Swift Package Manager Session 411 Rick Ballard, SwiftPM Release Manager Boris Buegling, Developer Tools Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display

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

Finding Bugs Using Xcode Runtime Tools

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

More information

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

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

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

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

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

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

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

More information

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

Pearson Edexcel Award

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

More information

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

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

More information

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

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

More information

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

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

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

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

Pearson Edexcel Award

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

More information

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

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

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

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

Getting and Using a MapKit JS Key

Getting and Using a MapKit JS Key #WWDC18 Getting and Using a MapKit JS Key Session 508 Eric Gelinas, MapKit JS 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

More information

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

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

More information

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

Accessibility on OS X

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

More information

Advances in AVFoundation Playback

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

More information

Optimizing Swift Performance Session 409

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

More information

Swift. Introducing swift. Thomas Woodfin

Swift. Introducing swift. Thomas Woodfin Swift Introducing swift Thomas Woodfin Content Swift benefits Programming language Development Guidelines Swift benefits What is Swift Benefits What is Swift New programming language for ios and OS X Development

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 Device Configuration, Deployment, and Management

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

More information

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

What s New in Swift #WWDC18. Ted Kremenek, Languages & Runtimes Manager Slava Pestov, Swift Compiler Engineer

What s New in Swift #WWDC18. Ted Kremenek, Languages & Runtimes Manager Slava Pestov, Swift Compiler Engineer Session #WWDC18 What s New in Swift 401 Ted Kremenek, Languages & Runtimes Manager Slava Pestov, Swift Compiler Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted

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

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

Improving the Accessibility and Usability of Complex Web Applications

Improving the Accessibility and Usability of Complex Web Applications Media #WWDC14 Improving the Accessibility and Usability of Complex Web Applications Session 516 Jesse Bunch Productivity Engineering 2014 Apple Inc. All rights reserved. Redistribution or public display

More information

Mobile Application Development

Mobile Application Development Android Native Application Development Mobile Application Development 1. Android Framework and Android Studio b. Android Software Layers c. Android Libraries d. Components of an Android Application e.

More information

Creating Extensions for Safari

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

More information

Understanding Undefined Behavior

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

More information

Content Protection for HTTP Live Streaming

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

More information

Administration Tab User Guide

Administration Tab User Guide Administration Tab User Guide November 2013 Standards Aligned System Project Based Assessment Administration Manual 1 This page is intentionally blank. Standards Aligned System Project Based Assessment

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

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

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

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

More information

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

SceneKit: What s New Session 604

SceneKit: What s New Session 604 Graphics and Games #WWDC17 SceneKit: What s New Session 604 Thomas Goossens, SceneKit engineer Amaury Balliet, SceneKit engineer Anatole Duprat, SceneKit engineer Sébastien Métrot, SceneKit engineer 2017

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

Localization Best Practices on tvos

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

More information

Deploying AirPrint in Enterprise

Deploying AirPrint in Enterprise System Frameworks #WWDC16 Deploying AirPrint in Enterprise Session 725 Todd Ritland AirPrint Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

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

Technology Training Spring February

Technology Training Spring February February 1st through 9th Location: MSTC-106 (TLC) February Monday February Tuesday February Wednesday February Thursday February Friday February 1 Word Tips & Tricks 4 5 Accessibility 201 11 12 Informer

More information

Cross Platform Nearby Networking

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

More information

Using the FollowMyHealth Mobile App for Apple to Access the MyUHCare Personal Health Record

Using the FollowMyHealth Mobile App for Apple to Access the MyUHCare Personal Health Record Using the FollowMyHealth Mobile App for Apple to Access the MyUHCare Personal Health Record Follow the steps below to access and view your MyUHCare Personal Health Record (PHR) directly from the free FollowMyHealth

More information

ios Configuration and APIs for Kiosk and Assessment Apps

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

More information

Automatic Strong Passwords and Security Code AutoFill

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

More information

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