imessage Apps and Stickers, Part 2

Size: px
Start display at page:

Download "imessage Apps and Stickers, Part 2"

Transcription

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

2 Recap imessage Apps, Part 1

3 NEW imessage Apps Interactive Messages

4 Introduction

5 Introduction Interactive Messages

6 Introduction Interactive Messages Messages Extension

7 Introduction Interactive Messages Messages Extension Compose an Interactive Message

8 Introduction Interactive Messages Messages Extension Compose an Interactive Message

9 Introduction Interactive Messages Messages Extension Compose an Interactive Message Reply to an Interactive Message

10 Introduction Interactive Messages Messages Extension Compose an Interactive Message Reply to an Interactive Message

11 Introduction Interactive Messages Messages Extension Compose an Interactive Message Reply to an Interactive Message

12 Introduction Interactive Messages Messages Extension Compose an Interactive Message Reply to an Interactive Message

13 Introduction Interactive Messages Messages Extension Compose an Interactive Message Reply to an Interactive Message

14 Introduction Interactive Messages Messages Extension Compose an Interactive Message Reply to an Interactive Message

15 Introduction Interactive Messages Messages Extension Compose an Interactive Message Reply to an Interactive Message

16 Demo Interactive Messages

17 Interactive Messages

18 Interactive Messages Messages API overview

19 Interactive Messages Messages API overview Extension lifecycle

20 Interactive Messages Messages API overview Extension lifecycle Compose a message

21 Interactive Messages Messages API overview Extension lifecycle Compose a message Send the message

22 Messages API Overview

23 Messages API Overview MSMessagesAppViewController

24 Messages API Overview MSConversation MSMessagesAppViewController

25 Messages API Overview MSConversation MSMessage MSSession MSMessageTemplateLayout MSMessagesAppViewController

26 Messages API Overview MSConversation MSMessage MSSession MSMessageTemplateLayout MSMessagesAppViewController

27 Extension Lifecycle Becoming active

28 Extension Lifecycle Becoming active Process Launched

29 Extension Lifecycle Becoming active Process Launched func didbecomeactive(with conversation: MSConversation)

30 Extension Lifecycle Becoming active Process Launched func viewwillappear(_ animated: Bool) func didbecomeactive(with conversation: MSConversation)

31 Extension Lifecycle Becoming active Process Launched func viewwillappear(_ animated: Bool) func didbecomeactive(with conversation: MSConversation) func viewdidappear(_ animated: Bool)

32 Extension Lifecycle Resigning active

33 Extension Lifecycle Resigning active func viewwilldisappear(_ animated: Bool)

34 Extension Lifecycle Resigning active func viewwilldisappear(_ animated: Bool) func viewdiddisappear(_ animated: Bool)

35 Extension Lifecycle Resigning active func willresignactive(with conversation: MSConversation) func viewwilldisappear(_ animated: Bool) func viewdiddisappear(_ animated: Bool)

36 Extension Lifecycle Resigning active func willresignactive(with conversation: MSConversation) func viewwilldisappear(_ animated: Bool) func viewdiddisappear(_ animated: Bool) Process Terminated

37 Compose a Message let message = MSMessage()

38 Compose a Message let message = MSMessage() message.url

39 Compose a Message let message = MSMessage() message.url

40 Compose a Message let message = MSMessage() "Let s build an ice cream" message.url message.accessibilitylabel

41 Compose a Message let message = MSMessage() "Let s build an ice cream" message.url message.accessibilitylabel

42 Compose a Message let message = MSMessage() "Let s build an ice cream" message.url message.accessibilitylabel message.layout

43 Compose a Message let message = MSMessage() "Let s build an ice cream" message.url message.accessibilitylabel message.layout

44 Compose a Message let layout = MSMessageTemplateLayout()

45 Compose a Message let layout = MSMessageTemplateLayout() layout.image

46 Compose a Message let layout = MSMessageTemplateLayout() layout.image

47 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl

48 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl

49 Compose a Message layout.image layout.mediafileurl

50 Compose a Message layout.image layout.mediafileurl Recommended media/image size

51 Compose a Message layout.image layout.mediafileurl Recommended media/image size PNG, JPEG, GIF, video

52 Compose a Message layout.image layout.mediafileurl Recommended media/image size PNG, JPEG, GIF, video May be transcoded on send

53 Compose a Message layout.image layout.mediafileurl Recommended media/image size PNG, JPEG, GIF, video May be transcoded on send Avoid rendering text in the image

54 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl

55 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle

56 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle

57 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle

58 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle

59 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption

60 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption

61 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption layout.trailingcaption

62 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption layout.trailingcaption

63 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption layout.trailingcaption layout.subcaption

64 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption layout.trailingcaption layout.subcaption

65 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption layout.trailingcaption layout.subcaption layout.trailingsubcaption

66 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption layout.trailingcaption layout.subcaption layout.trailingsubcaption

67 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption layout.trailingcaption layout.subcaption layout.trailingsubcaption

68 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption layout.trailingcaption layout.subcaption layout.trailingsubcaption

69 Sending a Message Specifying message appearance let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption = nil layout.trailingcaption = nil layout.subcaption = nil layout.trailingsubcaption = nil

70 Sending a Message Specifying message appearance let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption = nil layout.trailingcaption = nil layout.subcaption = nil layout.trailingsubcaption = nil

71 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption = nil layout.trailingcaption = nil layout.subcaption = nil layout.trailingsubcaption = nil

72 Compose a Message let layout = MSMessageTemplateLayout() layout.image layout.mediafileurl layout.imagetitle layout.imagesubtitle layout.caption = nil layout.trailingcaption = nil layout.subcaption = nil layout.trailingsubcaption = nil

73 Send a Message

74 Send a Message

75 Send a Message let conversation = self.activeconversation

76 Send a Message let conversation = self.activeconversation conversation?.insert(message) { error in }) // TODO: Check for an error

77 Send a Message let conversation = self.activeconversation conversation?.insert(message) { error in }) // TODO: Check for an error

78 // Sending other types

79 // Sending other types conversation?.inserttext("example text ) { error in } // TODO: Check for an error

80 // Sending other types conversation?.inserttext("example text ) { error in } // TODO: Check for an error conversation?.insertattachment(resourceurl, withalternatefilename: nil) { error in } // TODO: Check for an error

81 // Sending other types conversation?.inserttext("example text ) { error in } // TODO: Check for an error conversation?.insertattachment(resourceurl, withalternatefilename: nil) { error in } // TODO: Check for an error conversation?.insert(sticker) { error in }) // TODO: Check for an error

82 Send the Message

83 Send the Message

84 Demo Sending a message

85 Presentation Style Overview Compact Expanded

86 Presentation Style Overview Compact Expanded

87 Presentation Style Overview Compact Expanded

88 Presentation Style Compact

89 Presentation Style Compact

90 Presentation Style Expanded

91 Presentation Style Transition

92 Presentation Style Transition

93 Presentation Style Transition

94 Presentation Style Transition

95 // Presentation Style

96 // Presentation Style override func willtransition(to presentationstyle: MSMessagesAppPresentationStyle) { } super.willtransition(to: presentationstyle)

97 // Presentation Style override func willtransition(to presentationstyle: MSMessagesAppPresentationStyle) { } super.willtransition(to: presentationstyle) override func didtransition(to presentationstyle: MSMessagesAppPresentationStyle) { } super.didtransition(to: presentationstyle)

98 // Presentation Style override func willtransition(to presentationstyle: MSMessagesAppPresentationStyle) { } super.willtransition(to: presentationstyle) override func didtransition(to presentationstyle: MSMessagesAppPresentationStyle) { } super.didtransition(to: presentationstyle) self.requestpresentationstyle(.expanded)

99 // Presentation Style override func willtransition(to presentationstyle: MSMessagesAppPresentationStyle) { } super.willtransition(to: presentationstyle) override func didtransition(to presentationstyle: MSMessagesAppPresentationStyle) { } super.didtransition(to: presentationstyle) self.requestpresentationstyle(.compact)

100 // Presentation Style override func willtransition(to presentationstyle: MSMessagesAppPresentationStyle) { } super.willtransition(to: presentationstyle) override func didtransition(to presentationstyle: MSMessagesAppPresentationStyle) { } super.didtransition(to: presentationstyle) self.requestpresentationstyle(.compact) self.dismiss()

101 Replying to a Message

102 Replying to a Message Two cases Extension is inactive Extension is active

103 Replying to a Message Two cases Extension is inactive Extension is active

104 Replying to a Message Extension is inactive

105 Replying to a Message Extension is inactive Bubble Tapped

106 Replying to a Message Extension is inactive Bubble Tapped Process Launched

107 Replying to a Message Extension is inactive Bubble Tapped Process Launched func didbecomeactive(with conversation: MSConversation)

108 Replying to a Message Extension is inactive Bubble Tapped Process Launched func viewwillappear(_ animated: Bool) func didbecomeactive(with conversation: MSConversation)

109 Replying to a Message Extension is inactive Bubble Tapped Process Launched func viewwillappear(_ animated: Bool) func didbecomeactive(with conversation: MSConversation) func viewdidappear(_ animated: Bool)

110 Replying to a Message Two cases Extension is inactive Extension is active

111 Replying to a Message Two cases Extension is inactive Extension is active

112 Replying to a Message Extension is active

113 Replying to a Message Extension is active Bubble Tapped

114 Replying to a Message Extension is active func willtransition(to presentationstyle: MSMessagesAppPresentationStyle) Bubble Tapped

115 Replying to a Message Extension is active func willtransition(to presentationstyle: MSMessagesAppPresentationStyle) Bubble Tapped func didselect(_ message: MSMessage, conversation: MSConversation)

116 Replying to a Message Extension is active func willtransition(to presentationstyle: MSMessagesAppPresentationStyle) Bubble Tapped func didselect(_ message: MSMessage, conversation: MSConversation) func didtransition(to presentationstyle: MSMessagesAppPresentationStyle)

117 Replying to a Message Selected message

118 Replying to a Message Selected message

119 Replying to a Message Selected message Check MSConversation s selectedmessage

120 Replying to a Message Selected message Check MSConversation s selectedmessage Show selected message

121 Replying to a Message Selected message Check MSConversation s selectedmessage Show selected message

122 Replying to a Message Selected message Check MSConversation s selectedmessage Show selected message Compose a response

123 Demo Composing a reply

124 Session Messages

125 Session Messages

126 Session Messages

127 Session Messages let session = MSSession()

128 Session Messages let session = MSSession() let message = MSMessage(session: session)

129 Session Messages let session = MSSession() let message = MSMessage(session: session) //... message.summarytext = "Let's build an ice cream"

130 Session Messages let session = MSSession() let message = MSMessage(session: session) //... message.summarytext = "Let's build an ice cream" let conversation = self.activeconversation conversation?.insert(message) { error in // TODO: Check for an error }

131 Session Messages let conversation = self.activeconversation let session = conversation?.selectedmessage?.session let message = MSMessage(session: session) //... message.summarytext = "Our finished ice cream conversation?.insert(message) { error in } // TODO: Check for an error

132 Session Messages let conversation = self.activeconversation let session = conversation?.selectedmessage?.session let message = MSMessage(session: session) //... message.summarytext = "Our finished ice cream conversation?.insert(message) { error in } // TODO: Check for an error

133 Session Messages let conversation = self.activeconversation let session = conversation?.selectedmessage?.session let message = MSMessage(session: session) //... message.summarytext = "Our finished ice cream conversation?.insert(message) { error in } // TODO: Check for an error

134 Session Messages message.summarytext = "Let's build an ice cream"

135 Session Messages message.summarytext = nil

136 Session Messages message.summarytext = nil

137 NEW imessage Apps Advanced Messages API

138 Advanced Messages API

139 Advanced Messages API Override Methods

140 Advanced Messages API Override Methods Group Conversations

141 Advanced Messages API Override Methods Group Conversations Identifying the Sender

142 Override Methods Did start sending

143 Override Methods Did start sending override func didstartsending(_ message: MSMessage, conversation: MSConversation) { super.didstartsending(message, conversation: conversation) }

144 Override Methods Did cancel sending

145 Override Methods Did cancel sending override func didcancelsending(_ message: MSMessage, conversation: MSConversation) { super.didcancelsending(message, conversation: conversation) }

146 Override Methods Did receive message

147 Override Methods Did receive message override func didreceive(_ message: MSMessage, conversation: MSConversation) { super.didreceive(message, conversation: conversation) }

148 Override Methods Did receive message override func didreceive(_ message: MSMessage, conversation: MSConversation) { super.didreceive(message, conversation: conversation) }

149 Group Conversations

150 Group Conversations Amber Ben Chris or or or or

151 Group Conversations Amber Ben Chris or or or or or or

152 Group Conversations Amber Ben Chris Chocolate Sauce or Sprinkles? or or or or or

153 Group Conversations Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or or

154 Group Conversations Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or or

155 Group Conversations Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or

156 Group Conversations Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or

157 Group Conversations Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or

158 Group Conversations Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? Vote for Chocolate Sauce or or or

159 Group Conversations Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? Vote for Sprinkles or or or

160 Group Conversations Only tapped message is available

161 Group Conversations Only tapped message is available Store state in the cloud

162 Identifying a Sender

163 Identifying a Sender Amber Ben Chris or or or or

164 Identifying a Sender Amber Ben Chris Chocolate Sauce or Sprinkles? or or or or or

165 Identifying a Sender Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or or

166 Identifying a Sender Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or or

167 Identifying a Sender Amber Ben Chris Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or or

168 Identifying a Sender Amber Ben D32 Chris 1E2 5C2 Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or or

169 Identifying a Sender Amber Ben D32 Chris 1E2 5C2 Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? or or or or

170 Identifying a Sender Amber Ben D32 Chris 1E2 5C2 Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? 5C2 or or or or

171 Identifying a Sender A7B D32 Amber Ben Chris 1A5 FE9 B81 1E2 5C2 7B1 81A Chocolate Sauce or Sprinkles? Chocolate Sauce or Sprinkles? A7B 5C2 or 1A5 or or or

172 Identifying a Sender

173 Identifying a Sender Number of participants

174 Identifying a Sender Number of participants Attribute a message to a sender

175 Identifying a Sender Number of participants Attribute a message to a sender Help establish identity

176 Identifying a Sender let layout = MSMessageTemplateLayout() // layout.caption = $\(conversation.localparticipantidentifier.uuidstring) likes Sprinkles!" // $1A5 likes Sprinkles

177 Identifying a Sender let layout = MSMessageTemplateLayout() // layout.caption = $\(conversation.localparticipantidentifier.uuidstring) likes Sprinkles!" // $1A5 Chris likes likes Sprinkles

178 Identifying a Sender let layout = MSMessageTemplateLayout() // layout.caption = $\(conversation.localparticipantidentifier.uuidstring) likes Sprinkles!" // $1A5 Chris likes likes Sprinkles

179 Identifying a Sender

180 Identifying a Sender Unique on each device

181 Identifying a Sender Unique on each device Scoped to the imessage App install

182 // Message sender identifier class MSMessage{ // var senderparticipantidentifier: NSUUID { get } } //

183 // Message sender identifier class MSMessage{ // var senderparticipantidentifier: NSUUID { get } } //

184 // Conversation local and remote identifiers class MSConversation : NSObject { // var localparticipantidentifier: NSUUID { get } // var remoteparticipantidentifiers: [NSUUID] { get } } //

185 // Conversation local and remote identifiers class MSConversation : NSObject { // var localparticipantidentifier: NSUUID { get } // var remoteparticipantidentifiers: [NSUUID] { get } } //

186 // Conversation local and remote identifiers class MSConversation : NSObject { // var localparticipantidentifier: NSUUID { get } // var remoteparticipantidentifiers: [NSUUID] { get } } //

187 // Conversation local and remote identifiers class MSConversation : NSObject { // var localparticipantidentifier: NSUUID { get } // var remoteparticipantidentifiers: [NSUUID] { get } } //

188 imessage Apps Supported platforms

189 Supported Platforms Interactive Messages watchos 3 macos Sierra ios 10

190 Supported Platforms Fallback support watchos 2 OS X ios 9

191 Supported Platforms Fallback details

192 Supported Platforms Fallback details Delivered as two separate messages

193 Supported Platforms Fallback details Delivered as two separate messages Image provided in the layout

194 Supported Platforms Fallback details Delivered as two separate messages Image provided in the layout URL provided in the message

195 Summary

196 Summary Introduced the Messages framework

197 Summary Introduced the Messages framework Create sticker packs

198 Summary Introduced the Messages framework Create sticker packs Create imessage apps and send interactive content

199 Summary Introduced the Messages framework Create sticker packs Create imessage apps and send interactive content Make something awesome!

200 More Information

201 Related Sessions imessage Apps and Stickers, Part 1 Presidio Tuesday 11:00AM

202 Labs imessage Apps and Stickers Lab Frameworks Lab A Thursday 3:00PM

203

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

Monetize and Promote Your App with iad

Monetize and Promote Your App with iad Media #WWDC15 Monetize and Promote Your App with iad From design to launch Session 503 Carol Teng Shashank Phadke 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Using and Extending the Xcode Source Editor

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

More information

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

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

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

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

Implementing UI Designs in Interface Builder

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

More information

Modern User Interaction on ios

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

More information

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

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

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

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

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

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

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

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

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

New Ways to Work with Workouts

New Ways to Work with Workouts Session #WWDC18 New Ways to Work with Workouts 707 Niharika Bedekar, Fitness Software Engineer Karim Benhmida, Health Software Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display

More information

What s New in Core Data?

What s New in Core Data? Session App Frameworks #WWDC17 What s New in Core? Persisting since 2004 210 Melissa Turner, Core Engineer Rishi Verma, Core Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display

More information

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

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

Touch Bar Fundamentals

Touch Bar Fundamentals Session App Frameworks #WWDC17 Touch Bar Fundamentals 211 Chris Dreessen John Tegtmeyer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

What s New in tvos #WWDC16. App Frameworks. Session 206. Hans Kim tvos Engineer

What s New in tvos #WWDC16. App Frameworks. Session 206. Hans Kim tvos Engineer App Frameworks #WWDC16 What s New in tvos Session 206 Hans Kim tvos Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. Welcome

More information

Creating 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

Announcements. Today s Topics

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

More information

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

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

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

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

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

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

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

Designing Great Apple Watch Experiences

Designing Great Apple Watch Experiences Design #WWDC16 Designing Great Apple Watch Experiences Session 804 Mike Stern User Experience Evangelist 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

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

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

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

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

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

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

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

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

Introducing Swift Playgrounds

Introducing Swift Playgrounds Developer Tools #WWDC16 Introducing Swift Playgrounds Exploring with Swift on ipad Session 408 Matt Patenaude Playgrounds Engineer Maxwell Swadling Playgrounds Engineer Jonathan Penn Playgrounds Engineer

More information

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

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

View Controller Advancements for ios8

View Controller Advancements for ios8 Frameworks #WWDC14 View Controller Advancements for ios8 Session 214 Bruce D. Nilo Manager, UIKit Fundamentals 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Introducing On Demand Resources

Introducing On Demand Resources App Frameworks #WWDC15 Introducing On Demand Resources An element of App Thinning Session 214 Steve Lewallen Frameworks Engineering Tony Parker Cocoa Frameworks 2015 Apple Inc. All rights reserved. Redistribution

More information

Media and Gaming Accessibility

Media and Gaming Accessibility Session System Frameworks #WWDC17 Media and Gaming Accessibility 217 Greg Hughes, Software Engineering Manager Charlotte Hill, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or public

More information

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

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

Advances in AVFoundation Playback

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

More information

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

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

More information

Apple Watch Design Tips and Tricks

Apple Watch Design Tips and Tricks Design #WWDC15 Apple Watch Design Tips and Tricks Session 805 Mike Stern User Experience Evangelist Rachel Roth User Experience Evangelist 2015 Apple Inc. All rights reserved. Redistribution or public

More information

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

Creating Audio Apps for watchos

Creating Audio Apps for watchos Session #WWDC18 Creating Audio Apps for watchos 504 Neil Desai, watchos Frameworks Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

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

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

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

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

Writing Energy Efficient Apps

Writing Energy Efficient Apps Session App Frameworks #WWDC17 Writing Energy Efficient Apps 238 Daniel Schucker, Software Power Engineer Prajakta Karandikar, Software Power Engineer 2017 Apple Inc. All rights reserved. Redistribution

More information

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Swift API Design Guidelines

Swift API Design Guidelines Developer Tools #WWDC16 Swift API Design Guidelines The Grand Renaming Session 403 Doug Gregor Swift Engineer Michael Ilseman Swift Engineer 2016 Apple Inc. All rights reserved. Redistribution or public

More information

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

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

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

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

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

Creating Extensions for ios and OS X, Part Two

Creating Extensions for ios and OS X, Part Two Frameworks #WWDC14 Creating Extensions for ios and OS X, Part Two Architecture Session 217 Damien Sorresso Overloaded Operator 2014 Apple Inc. All rights reserved. Redistribution or public display not

More information

What s New in Foundation for Swift Session 207

What s New in Foundation for Swift Session 207 App Frameworks #WWDC16 What s New in Foundation for Swift Session 207 Tony Parker Foundation, Apple Michael LeHew Foundation, Apple 2016 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

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

From Art to Engine with Model I/O

From Art to Engine with Model I/O Session Graphics and Games #WWDC17 From Art to Engine with Model I/O 610 Nick Porcino, Game Technologies Engineer Nicholas Blasingame, Game Technologies Engineer 2017 Apple Inc. All rights reserved. Redistribution

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

Adopting Advanced Features of the New UI

Adopting Advanced Features of the New UI Frameworks #WWDC14 Adopting Advanced Features of the New UI Session 220 Chris Dreessen AppKit Software Engineer! Corbin Dunn AppKit Software Engineer 2014 Apple Inc. All rights reserved. Redistribution

More information

Building Faster in Xcode

Building Faster in Xcode #WWDC18 Building Faster in Xcode Session 408 David Owens, Xcode Engineer Jordan Rose, Swift Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

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

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

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

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