Touch Bar Fundamentals

Size: px
Start display at page:

Download "Touch Bar Fundamentals"

Transcription

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

2

3

4

5

6

7

8

9 Specifications P3 retina display Multi-Touch Context sensitivity Adaptive whitepoint and brightness

10 Design Goals Input device Don t hide functionality Don t distract

11 Core classes Responder chain NSTouchBarItem in depth

12 Core classes Responder chain NSTouchBarItem in depth

13 Core Classes NSTouchBarItem NSTouchBar NSResponder

14 NSTouchBarItem

15 NSTouchBarItem

16 NSTouchBarItem Attaches a view to the Touch Bar Intended to be subclassed Has a required identifier

17 NSTouchBar Has array of item identifiers

18 // Creating an NSTouchBar let sharkidentifier = NSTouchBarItem.Identifier( shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle ) let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier]

19 // Creating an NSTouchBar let sharkidentifier = NSTouchBarItem.Identifier( shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle ) let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier]

20 // Creating an NSTouchBar let sharkidentifier = NSTouchBarItem.Identifier( shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle ) let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier]

21 NSTouchBar Has array of item identifiers Looks up items by identifiers templateitems delegate

22 // Using NSTouchBar.templateItems let sharkidentifier = NSTouchBarItem.Identifier("shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle ) let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] let sharkitem = NSCustomTouchBarItem(identifier: sharkidentifier) sharkitem.view = NSButton(title: "", target: nil, action: nil) let turtleitem = NSCustomTouchBarItem(identifier: seaturtleidentifier) turtleitem.view = NSButton(title: " ", target: nil, action: nil) bar.templateitems = [sharkitem, turtleitem]

23 // Using NSTouchBar.templateItems let sharkidentifier = NSTouchBarItem.Identifier("shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle ) let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] let sharkitem = NSCustomTouchBarItem(identifier: sharkidentifier) sharkitem.view = NSButton(title: "", target: nil, action: nil) let turtleitem = NSCustomTouchBarItem(identifier: seaturtleidentifier) turtleitem.view = NSButton(title: " ", target: nil, action: nil) bar.templateitems = [sharkitem, turtleitem]

24 // Using NSTouchBar.templateItems let sharkidentifier = NSTouchBarItem.Identifier("shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle ) let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] let sharkitem = NSCustomTouchBarItem(identifier: sharkidentifier) sharkitem.view = NSButton(title: "", target: nil, action: nil) let turtleitem = NSCustomTouchBarItem(identifier: seaturtleidentifier) turtleitem.view = NSButton(title: " ", target: nil, action: nil) bar.templateitems = [sharkitem, turtleitem]

25 // Using NSTouchBar.templateItems let sharkidentifier = NSTouchBarItem.Identifier("shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle ) let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] let sharkitem = NSCustomTouchBarItem(identifier: sharkidentifier) sharkitem.view = NSButton(title: "", target: nil, action: nil) let turtleitem = NSCustomTouchBarItem(identifier: seaturtleidentifier) turtleitem.view = NSButton(title: " ", target: nil, action: nil) bar.templateitems = [sharkitem, turtleitem]

26

27 // Implementing an NSTouchBarDelegate class MyTouchBarDelegate: NSObject, NSTouchBarDelegate { func touchbar(_ touchbar: NSTouchBar, makeitemforidentifier identifier: NSTouchBarItem.Identifier) -> NSTouchBarItem? { switch identifier { case sharkidentifier: let item = NSCustomTouchBarItem(identifier: identifier) item.view = NSButton(title: "", target: nil, action: nil) return item case seaturtleidentifier: let item = NSCustomTouchBarItem(identifier: identifier) item.view = NSButton(title: " ", target: nil, action: nil) return item default: return nil } } }

28 // Implementing an NSTouchBarDelegate class MyTouchBarDelegate: NSObject, NSTouchBarDelegate { func touchbar(_ touchbar: NSTouchBar, makeitemforidentifier identifier: NSTouchBarItem.Identifier) -> NSTouchBarItem? { switch identifier { case sharkidentifier: let item = NSCustomTouchBarItem(identifier: identifier) item.view = NSButton(title: "", target: nil, action: nil) return item case seaturtleidentifier: let item = NSCustomTouchBarItem(identifier: identifier) item.view = NSButton(title: " ", target: nil, action: nil) return item default: return nil } } }

29 // Implementing an NSTouchBarDelegate class MyTouchBarDelegate: NSObject, NSTouchBarDelegate { func touchbar(_ touchbar: NSTouchBar, makeitemforidentifier identifier: NSTouchBarItem.Identifier) -> NSTouchBarItem? { switch identifier { case sharkidentifier: let item = NSCustomTouchBarItem(identifier: identifier) item.view = NSButton(title: "", target: nil, action: nil) return item case seaturtleidentifier: let item = NSCustomTouchBarItem(identifier: identifier) item.view = NSButton(title: " ", target: nil, action: nil) return item default: return nil } } }

30 NSTouchBar Has array of item identifiers Looks up items by identifiers templateitems delegate Customizable

31 // Making an NSTouchBar customizable bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier]

32 // Making an NSTouchBar customizable NSApp.isAutomaticCustomizeTouchBarMenuItemEnabled = true bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] bar.customizationidentifier = NSTouchBar.CustomizationIdentifier("ocean animals") bar.customizationalloweditemidentifiers = [sharkidentifier, seaturtleidentifier]

33 // Making an NSTouchBar customizable NSApp.isAutomaticCustomizeTouchBarMenuItemEnabled = true bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] bar.customizationidentifier = NSTouchBar.CustomizationIdentifier("ocean animals") bar.customizationalloweditemidentifiers = [sharkidentifier, seaturtleidentifier]

34 // Making an NSTouchBar customizable NSApp.isAutomaticCustomizeTouchBarMenuItemEnabled = true bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] bar.customizationidentifier = NSTouchBar.CustomizationIdentifier("ocean animals") bar.customizationalloweditemidentifiers = [sharkidentifier, seaturtleidentifier, angelfishidentifier, dolphinidentifier, octopusidentifier, crabidentifier, squididentifier, fishidentifier, pufferfishidentifier, whaleidentifier]

35 // Making an NSTouchBar customizable NSApp.isAutomaticCustomizeTouchBarMenuItemEnabled = true bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] bar.customizationidentifier = NSTouchBar.CustomizationIdentifier("ocean animals") bar.customizationalloweditemidentifiers = [sharkidentifier, seaturtleidentifier] seaturtleidentifier, angelfishidentifier, dolphinidentifier, octopusidentifier, crabidentifier, squididentifier, fishidentifier, pufferfishidentifier, whaleidentifier] bar.customizationrequireditemidentifiers = [seaturtleidentifier]

36 NSTouchBarProvider Protocol Connects NSTouchBars to the Touch Bar Implemented by delegates and responders extension NSTouchBarProvider : NSObject { } let touchbar: NSTouchBar?

37 // Providing an NSTouchBar from an application delegate using the NSTouchBarProvider protocol class ApplicationDelegate: NSObject, NSApplicationDelegate, NSTouchBarProvider { lazy var touchbar: NSTouchBar? = { let item = NSCustomTouchBarItem(identifier:NSTouchBarItem.Identifier("shark")) item.view = NSButton(title: "", target: nil, action: nil) let bar = NSTouchBar() bar.defaultitemidentifiers = [NSTouchBarItem.Identifier("shark")] bar.templateitems = [item] } }() return bar

38 // Providing an NSTouchBar from an application delegate using the NSTouchBarProvider protocol class ApplicationDelegate: NSObject, NSApplicationDelegate, NSTouchBarProvider { lazy var touchbar: NSTouchBar? = { let item = NSCustomTouchBarItem(identifier:NSTouchBarItem.Identifier("shark")) item.view = NSButton(title: "", target: nil, action: nil) let bar = NSTouchBar() bar.defaultitemidentifiers = [NSTouchBarItem.Identifier("shark")] bar.templateitems = [item] } }() return bar

39 NSResponder Has a settable touchbar property class NSResponder : NSObject, NSTouchBarProvider { } var touchbar: NSTouchBar? Subclasses can use.maketouchbar()

40 // Providing an NSTouchBar from an NSResponder subclass class MyWindowController: NSWindowController, NSTouchBarDelegate { override func maketouchbar() -> NSTouchBar? { let touchbar = NSTouchBar() touchbar.delegate = self touchbar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] return touchbar } }

41 // Providing an NSTouchBar from an NSResponder subclass class MyWindowController: NSWindowController, NSTouchBarDelegate { override func maketouchbar() -> NSTouchBar? { let touchbar = NSTouchBar() touchbar.delegate = self touchbar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] return touchbar } }

42 Interface Builder

43 Interface Builder

44 Interface Builder

45 Interface Builder

46 Interface Builder

47 Interface Builder

48 Core classes Responder chain NSTouchBarItem in depth

49 Responder Chain NSResponder nextresponder property Linked to form chains

50 Responder Chain NSEvent

51 Responder Chain NSEvent b Application

52 Responder Chain b Application NSEvent

53 Responder Chain b Application NSEvent

54 Responder Chain b Application NSEvent a Key Window

55 Responder Chain b Application a Key Window NSEvent

56 Responder Chain b Application a Key Window c First Responder NSEvent

57 Responder Chain b Application a Key Window c First Responder NSEvent

58 Responder Chain B Application A Key Window C First Responder NSEvent

59 Responder Chain B Application D View A Key Window C First Responder NSEvent

60 Responder Chain B Application D View NSEvent A Key Window C First Responder

61 Responder Chain B Application D View NSEvent A Key Window C First Responder

62 Responder Chain E View Controller B Application D View NSEvent A Key Window C First Responder

63 Responder Chain E View Controller B Application NSEvent D View A Key Window C First Responder

64 Responder Chain E View Controller B Application NSEvent D View A Key Window C First Responder

65 Responder Chain E View Controller B Application D View A Key Window C First Responder NSEvent

66 Responder Chain E View Controller B Application D View A Key Window C First Responder NSEvent

67 Responder Chain E View Controller B Application D View A Key Window C First Responder NSEvent

68 Responder Chain E View Controller B Application NSEvent D View A Key Window C First Responder

69 Responder Chain E View Controller B Application D View A Key Window C First Responder

70 Responder Chain E View Controller B Application D View A Key Window C First Responder

71 Responder Chain E View Controller B Application D View A Key Window C First Responder esc

72 A Special Note About Views and View Controllers To be the first responder of a window, views must opt-in class MyViewSubclass: NSView { func override acceptsfirstresponder -> Bool { return true } }

73 Responder Chain Multiple NSTouchBar instances Closest to keyboard input wins Many system controls have automatic support

74 NSTouchBarItemIdentifier.otherItemsProxy A special item identifier Incorporates items from other NSTouchBar instances

75

76

77 Touch Bar Window Controller s NSTouchBar.otherItemsProxy Recipient Field s NSTouchBar

78 Touch Bar Window Controller s NSTouchBar.otherItemsProxy Edit View s NSTouchBar

79

80 NSTouchBarItemIdentifier.otherItemsProxy Excluding an NSTouchBar Mail Viewer No window Viewer window

81 Space Item Identifiers

82 Space Item Identifiers no space

83 Space Item Identifiers.fixedSpaceLarge

84 Space Item Identifiers.flexibleSpace

85 Flexible Space

86 Flexible Space

87 Principal Item Identifier

88 Principal Item Identifier NSTouchBar.principalItemIdentifier Physically centered

89 // Using NSTouchBar.principalItemIdentifier let sharkidentifier = NSTouchBarItem.Identifier("shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle") let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] let sharkitem = NSCustomTouchBarItem(identifier: sharkidentifier) sharkitem.view = NSButton(title: "", target: nil, action: nil) let turtleitem = NSCustomTouchBarItem(identifier: seaturtleidentifier) turtleitem.view = NSButton(title: " ", target: nil, action: nil) bar.templateitems = [sharkitem, turtleitem] bar.principalitemidentifier = sharkidentifier

90 // Using NSTouchBar.principalItemIdentifier let sharkidentifier = NSTouchBarItem.Identifier("shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle") let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] let sharkitem = NSCustomTouchBarItem(identifier: sharkidentifier) sharkitem.view = NSButton(title: "", target: nil, action: nil) let turtleitem = NSCustomTouchBarItem(identifier: seaturtleidentifier) turtleitem.view = NSButton(title: " ", target: nil, action: nil) bar.templateitems = [sharkitem, turtleitem] bar.principalitemidentifier = sharkidentifier

91 // Using NSTouchBar.principalItemIdentifier let sharkidentifier = NSTouchBarItem.Identifier("shark") let seaturtleidentifier = NSTouchBarItem.Identifier("sea turtle") let bar = NSTouchBar() bar.defaultitemidentifiers = [sharkidentifier, seaturtleidentifier] let sharkitem = NSCustomTouchBarItem(identifier: sharkidentifier) sharkitem.view = NSButton(title: "", target: nil, action: nil) let turtleitem = NSCustomTouchBarItem(identifier: seaturtleidentifier) turtleitem.view = NSButton(title: " ", target: nil, action: nil) bar.templateitems = [sharkitem, turtleitem] bar.principalitemidentifier = seaturtleidentifier

92 Core classes Responder chain NSTouchBarItem in Depth

93 NSTouchBarItem in Depth John Tegtmeyer

94 NSTouchBarItem class NSTouchBarItem : NSObject, NSCoding { var identifier: NSTouchBarItem.Identifier { get } var view: NSView? { get } var viewcontroller: NSViewController? { get } } var customizationlabel: String { get }

95 NSTouchBarItem class NSTouchBarItem : NSObject, NSCoding { var identifier: NSTouchBarItem.Identifier { get } var view: NSView? { get } var viewcontroller: NSViewController? { get } } var customizationlabel: String { get }

96 NSTouchBarItem class NSTouchBarItem : NSObject, NSCoding { var identifier: NSTouchBarItem.Identifier { get } var view: NSView? { get } var viewcontroller: NSViewController? { get } } var customizationlabel: String { get }

97 NSTouchBarItem class NSTouchBarItem : NSObject, NSCoding { var identifier: NSTouchBarItem.Identifier { get } var view: NSView? { get } var viewcontroller: NSViewController? { get } } var customizationlabel: String { get }

98 NSTouchBarItem class NSTouchBarItem : NSObject, NSCoding { var identifier: NSTouchBarItem.Identifier { get } var view: NSView? { get } var viewcontroller: NSViewController? { get } } var customizationlabel: String { get }

99 NSTouchBarItem Constraint-based sizing intrinsiccontentsize Inequality constraints Advanced Touch Bar Grand Ballroom A Wednesday 5:10PM

100 NSCustomTouchBarItem NSPopoverTouchBarItem NSSliderTouchBarItem NSGroupTouchBarItem Other Items

101 NSCustomTouchBarItem NSPopoverTouchBarItem NSSliderTouchBarItem NSGroupTouchBarItem Other Items

102 NSCustomTouchBarItem Set view or view controller Convenience constructors Button Segmented Control Label Scrubber

103 // customtouchbaritem : NSButton let buttonitem = NSCustomTouchBarItem(identifier: identifier) buttonitem.view = NSButton(title: "Hello World!", target: nil, action: nil)

104 // customtouchbaritem : NSSegmentedControl let segmenteditem = NSCustomTouchBarItem(identifier: identifier) segmenteditem.view = NSSegmentedControl(labels: ["foo", "bar", "buzz"], trackingmode:.selectone, target: nil, action: nil)

105 NSCustomTouchBarItem NSPopoverTouchBarItem NSSliderTouchBarItem NSGroupTouchBarItem Other Items

106 NSPopoverTouchBarItem Collapsed representation Popover NSTouchBar

107 NSPopoverTouchBarItem Default class NSPopoverTouchBarItem: NSTouchBarItem { var collapsedrepresentationimage: NSImage? } var collapsedrepresentationlabel: String

108 NSPopoverTouchBarItem Custom class NSPopoverTouchBarItem: NSTouchBarItem { var collapsedrepresentation: NSView func showpopover(_ sender: Any?) } func dismisspopover(_ sender: Any?)

109 NSPopoverTouchBarItem Touch and show

110 NSPopoverTouchBarItem Press and hold

111 NSPopoverTouchBarItem Touch and show Press and hold

112 NSPopoverTouchBarItem class NSPopoverTouchBarItem: NSTouchBarItem { var popovertouchbar: NSTouchBar } var pressandholdtouchbar: NSTouchBar?

113 NSCustomTouchBarItem NSPopoverTouchBarItem NSSliderTouchBarItem NSGroupTouchBarItem Other Items

114 NSSliderTouchBarItem Slider Value accessories Label

115 NSSliderTouchBarItem Slider Value accessories Label

116 NSSliderTouchBarItem Slider Value accessories Label

117 NSSliderTouchBarItem Slider Value accessories Label

118 NSSliderTouchBarItem Press and hold

119 NSSliderTouchBarItem Press and hold

120 // NSSliderTouchBarItem with value accessories and a label let slideritem = NSSliderTouchBarItem(identifier: identifier) slideritem.minimumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateLeftTemplate)!) slideritem.maximumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateRightTemplate)!) slideritem.label = "Rotation"

121 // NSSliderTouchBarItem with value accessories and a label let slideritem = NSSliderTouchBarItem(identifier: identifier) slideritem.minimumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateLeftTemplate)!) slideritem.maximumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateRightTemplate)!) slideritem.label = "Rotation"

122 // NSSliderTouchBarItem with value accessories and a label let slideritem = NSSliderTouchBarItem(identifier: identifier) slideritem.minimumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateLeftTemplate)!) slideritem.maximumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateRightTemplate)!) slideritem.label = "Rotation"

123 // NSSliderTouchBarItem with value accessories and a label let slideritem = NSSliderTouchBarItem(identifier: identifier) slideritem.minimumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateLeftTemplate)!) slideritem.maximumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateRightTemplate)!) slideritem.label = "Rotation"

124 // NSSliderTouchBarItem with value accessories and a label let slideritem = NSSliderTouchBarItem(identifier: identifier) slideritem.minimumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateLeftTemplate)!) slideritem.maximumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateRightTemplate)!) slideritem.label = "Rotation"

125 // NSSliderTouchBarItem with value accessories and a label let slideritem = NSSliderTouchBarItem(identifier: identifier) slideritem.minimumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateLeftTemplate)!) slideritem.maximumvalueaccessory = NSSliderAccessory(image: NSImage(named:.touchBarRotateRightTemplate)!) slideritem.label = "Rotation" slideritem.slider.widthanchor.constraint(equaltoconstant: 200).isActive = true

126 NSCustomTouchBarItem NSPopoverTouchBarItem NSSliderTouchBarItem NSGroupTouchBarItem Other Items

127 NSGroupTouchBarItem class NSGroupTouchBarItem: NSTouchBarItem { convenience init(identifier: NSTouchBarItem.Identifier, items: [NSTouchBarItem]) } var grouptouchbar: NSTouchBar

128 NSGroupTouchBarItem Center multiple items Customization Localization

129 NSGroupTouchBarItem Center multiple items

130 NSGroupTouchBarItem Non-customizable

131 NSGroupTouchBarItem Non-customizable

132 NSGroupTouchBarItem Customizable Within-group reordering Items remain within group

133 NSGroupTouchBarItem Customizable Within-group reordering Items remain within group

134 NSGroupTouchBarItem Localization FaceTime with Bird Full Screen End Mute

135 NSGroupTouchBarItem Localization FaceTime with Bird Full Screen End Mute

136 NSGroupTouchBarItem Localization معwith FaceTime FaceTime إجراء Bird كتمMute الصوت إنهاء End ملء Screen الشاشة Full

137 NSGroupTouchBarItem Localization Control Strip and esc key do not flip left-to-right Opt-in per group

138 NSGroupTouchBarItem Localization NEW Control Strip and esc key do not flip left-to-right Opt-in per group groupitem.groupuserinterfacelayoutdirection = NSApp.userInterfaceLayoutDirection

139 NSGroupTouchBarItem Localization Design for variable length strings Rigid constraints can cause clipping

140 NSGroupTouchBarItem Localization Design for variable length strings Rigid constraints can cause clipping

141 NSGroupTouchBarItem Localization Design for variable length strings Rigid constraints can cause clipping Advanced Touch Bar Grand Ballroom A Wednesday 5:10PM

142 NSCustomTouchBarItem NSPopoverTouchBarItem NSSliderTouchBarItem NSGroupTouchBarItem Other Items

143 NSColorPickerTouchBarItem

144 NSSharingServicePickerTouchBarItem

145 NSScrubber Advanced Touch Bar Grand Ballroom A Wednesday 5:10PM

146 Next Steps Adopt NSTouchBar User customization Localization

147 More Information

148 Related Sessions Choosing the Right Cocoa Container View Grand Ballroom B Wednesday 3:10PM Advanced Touch Bar Grand Ballroom A Wednesday 5:10PM

149 Labs Cocoa Lab Technology Lab C Wed 11:00AM-1:00PM Cocoa Touch Bar Lab Technology Lab C Thurs 9:00AM-11:00AM Cocoa Lab Technology Lab B Fri 1:50PM-3:20PM

150

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

What s New in watchos

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

More information

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

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

Storyboards and Controllers on OS X

Storyboards and Controllers on OS X Frameworks #WWDC14 Storyboards and Controllers on OS X Contain yourself Session 212 Mike Swingler Interface Builder Engineer Raleigh Ledet AppKit Engineer 2014 Apple Inc. All rights reserved. Redistribution

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

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

User Interfaces. Lecture 19. Cocoa: Mouse and Keyboard Events. Hamza Bennani September 18, 2018

User Interfaces. Lecture 19. Cocoa: Mouse and Keyboard Events. Hamza Bennani September 18, 2018 User Interfaces Lecture 19 Cocoa: Mouse and Keyboard Events Hamza Bennani hamza@hamzabennani.com September 18, 2018 Last Lecture Where did we stop? 1 Events Events get filtered into a queue by MacOS X

More information

User Interfaces. Lecture 16. Model - View - Controller. Hamza Bennani September 6, 2018

User Interfaces. Lecture 16. Model - View - Controller. Hamza Bennani September 6, 2018 User Interfaces Lecture 16 Model - View - Controller Hamza Bennani hamza@hamzabennani.com September 6, 2018 Last Lecture Summary Default Cocoa application. NSApplication NSApplicationDelegate XIB/NIB-file

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

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 Drag and Drop

Mastering Drag and Drop Session App Frameworks #WWDC17 Mastering Drag and Drop 213 Tom Adriaenssen, UIKit Wenson Hsieh, WebKit Robb Böhnke, UIKit 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

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

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

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

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

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

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

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

What s New in Cocoa. App Frameworks #WWDC17. Ali Ozer Daphne Larose

What s New in Cocoa. App Frameworks #WWDC17. Ali Ozer Daphne Larose Session App Frameworks #WWDC17 What s New in Cocoa 207 Ali Ozer Daphne Larose 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

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

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

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

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

Enabling Your App for CarPlay

Enabling Your App for CarPlay Session App Frameworks #WWDC17 Enabling Your App for CarPlay 719 Albert Wan, CarPlay Engineering 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

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

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

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

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

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

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

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

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

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

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

Your Apps and Evolving Network Security Standards

Your Apps and Evolving Network Security Standards Session System Frameworks #WWDC17 Your Apps and Evolving Network Security Standards 701 Bailey Basile, Secure Transports Engineer Chris Wood, Secure Transports Engineer 2017 Apple Inc. All rights reserved.

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

Cocoa Development Tips

Cocoa Development Tips Session App Frameworks #WWDC17 Cocoa Development Tips Twenty-nine things you may not know about Cocoa 236 Rachel Goldeen, Cocoa Engineer Vincent Hittson, Cocoa Engineer 2017 Apple Inc. All rights reserved.

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

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

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

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

Getting Started with CareKit

Getting Started with CareKit App Frameworks #WWDC16 Getting Started with CareKit Session 237 Umer Khan Software Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

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

JavaScript for Automation

JavaScript for Automation Services #WWDC14 JavaScript for Automation Session 306 Sal Soghoian Product Manger Automation Technologies 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Introducing MusicKit. Media #WWDC17. Tim Parthemore, MusicKit Services Joel Lopes Da Silva, ios Music

Introducing MusicKit. Media #WWDC17. Tim Parthemore, MusicKit Services Joel Lopes Da Silva, ios Music Session Media #WWDC17 Introducing MusicKit 502 Tim Parthemore, MusicKit Services Joel Lopes Da Silva, ios Music 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

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

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

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

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

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

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

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

Finding Bugs Using Xcode Runtime Tools

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

More information

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

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

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

SceneKit in Swift Playgrounds

SceneKit in Swift Playgrounds Session Graphics and Games #WWDC17 SceneKit in Swift Playgrounds 605 Michael DeWitt, Gem Collector Lemont Washington, Draw Call Blaster 2017 Apple Inc. All rights reserved. Redistribution or public display

More information

What s New in Notifications

What s New in Notifications System Frameworks #WWDC15 What s New in Notifications Session 720 Michele Campeotto ios Notifications Gokul Thirumalai Apple Push Notification Service 2015 Apple Inc. All rights reserved. Redistribution

More information

Designing 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

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

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

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

What s New in Cocoa #WWDC14. Frameworks. Session 204 Ali Ozer Director of Cocoa Frameworks

What s New in Cocoa #WWDC14. Frameworks. Session 204 Ali Ozer Director of Cocoa Frameworks Frameworks #WWDC14 What s New in Cocoa Session 204 Ali Ozer Director of Cocoa Frameworks 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

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

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

User Interfaces. Lecture 15. Application Programming on Mac OS. Hamza Bennani September 4, 2018

User Interfaces. Lecture 15. Application Programming on Mac OS. Hamza Bennani September 4, 2018 User Interfaces Lecture 15 Application Programming on Mac OS Hamza Bennani hamza@hamzabennani.com September 4, 2018 Logistics Office hours: Tue/Thu, 2pm to 3pm. Office: 250 Geoff Wyvill. Acknowledgment:

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

Event Delivery: The Responder Chain

Event Delivery: The Responder Chain When you design your app, it s likely that you want to respond to events dynamically. For example, a touch can occur in many different objects onscreen, and you have to decide which object you want to

More information

Advanced Cocoa Text Tips and Tricks. Aki Inoue Cocoa Engineer

Advanced Cocoa Text Tips and Tricks. Aki Inoue Cocoa Engineer Advanced Cocoa Text Tips and Tricks Aki Inoue Cocoa Engineer 2 Introduction Only on Mac OS Diving deeper Understanding the layout process Getting comfortable with extending and customizing base functionalities

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

ios DeCal : Lecture 2 Structure of ios Applications: MVC and Auto Layout

ios DeCal : Lecture 2 Structure of ios Applications: MVC and Auto Layout ios DeCal : Lecture 2 Structure of ios Applications: MVC and Auto Layout Overview : Today s Lecture Model View Controller Design Pattern Creating Views in Storyboard Connecting your Views to Code Auto

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

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

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

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

High Performance Auto Layout

High Performance Auto Layout #WWDC18 High Performance Auto Layout Ken Ferry, ios System Experience Kasia Wawer, ios Keyboards 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

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

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

John Ray. Sams Teach Yourself. iphone. Application Development. Second Edition. S^/MS 800 East 96th Street, Indianapolis, Indiana, USA

John Ray. Sams Teach Yourself. iphone. Application Development. Second Edition. S^/MS 800 East 96th Street, Indianapolis, Indiana, USA John Ray Sams Teach Yourself iphone Application Development Second Edition S^/MS 800 East 96th Street, Indianapolis, Indiana, 46240 USA Table of Contents Introduction 1 Who Can Become an iphone Developer?

More information

AVContentKeySession Best Practices

AVContentKeySession Best Practices Session #WWDC18 AVContentKeySession Best Practices 507 Anil Katti, AVFoundation Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

Understanding Undefined Behavior

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

More information

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

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

What s New in Cocoa #WWDC16. App Frameworks. Session 203

What s New in Cocoa #WWDC16. App Frameworks. Session 203 App Frameworks #WWDC16 What s New in Cocoa Session 203 Ali Ozer Director, Cocoa Frameworks Raleigh Ledet Event Wrangler, Cocoa Frameworks Taylor Kelly Engineer, Cocoa Frameworks 2016 Apple Inc. All rights

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

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

Introducing SiriKit. Hey Siri, say hello to apps #WWDC16. App Frameworks. Session 217

Introducing SiriKit. Hey Siri, say hello to apps #WWDC16. App Frameworks. Session 217 App Frameworks #WWDC16 Introducing SiriKit Hey Siri, say hello to apps Session 217 Robby Walker SiriKit Engineering Brandon Newendorp SiriKit Engineering Corey Peterson SiriKit Design 2016 Apple Inc. All

More information

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

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

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

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

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

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