What s New in Core Data?

Size: px
Start display at page:

Download "What s New in Core Data?"

Transcription

1 Session App Frameworks #WWDC17 What s New in Core? Persisting since Melissa Turner, Core Engineer Rishi Verma, Core Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

2 Roadmap Core Spotlight integration New indexing APIs Persistent history tracking

3 Alphonse Says Hi

4 CoreSpotlight

5 What is Spotlight Original search API on macos Document-centric Search results identify document Not location in document Not ideal for databases

6 What is Core Spotlight Original search tool on ios base-friendly Spotlight API Search for content in apps Allows deep linking

7 What is Core Spotlight NEW Original search tool on ios base-friendly Spotlight API Search for content in apps Allows deep linking Ships on Mac OS and ios

8 Core Spotlight

9 Core Spotlight

10 Core Spotlight

11 Core Spotlight

12 Core Spotlight

13 What is Core Spotlight Original search tool on ios base-friendly Spotlight API Search for content in apps Allows deep linking Ships on Mac OS and ios

14 What is Core Spotlight Original search tool on ios base-friendly Spotlight API Search for content in apps Allows deep linking Ships on Mac OS and ios Access CoreSpotlight search data from your app

15 What is Core Spotlight Original search tool on ios base-friendly Spotlight API Search for content in apps Allows deep linking Ships on Mac OS and ios Access CoreSpotlight search data from your app No zero-length files

16 Three Pieces Way to indicate property participation NSPropertyDescription.indexedBySpotlight Way to specify display name NSEntityDescription.coreSpotlightDisplayNameExpression Exporter

17 corespotlightdisplaynameexpression NSExpression Evaluated during Core Spotlight update object parameter will be an instance of NSManaged Can return anything Core Spotlight can accept CSLocalizedString

18 corespotlightdisplaynameexpression Keypath Property name Function lowercase:(displayname) MyUtilityClass displaynamefor:, self))

19 NSCoreCoreSpotlightDelegate Implements CSSearchableIndexDelegate Default implementations of all methods Uses a separate store on a background thread Initialize with NSPersistentStoreDescription + model Override point is NSCDCSD.attributeSet(for object:)

20 override func attributeset(for object: NSManaged) -> CSSearchableItemAttributeSet? { guard let attributeset = super.attributeset(for: object) else { return nil } if "Photo" == object.entity.name { let photo = object as! Photo let tags = photo.tags let localizedstring = localizedtagstring(photo) attributeset.setvalue(localizedstring, forcustomkey: attributekey!) } return attributeset; }

21 override func attributeset(for object: NSManaged) -> CSSearchableItemAttributeSet? { guard let attributeset = super.attributeset(for: object) else { return nil } if "Photo" == object.entity.name { let photo = object as! Photo let tags = photo.tags let localizedstring = localizedtagstring(photo) attributeset.setvalue(localizedstring, forcustomkey: attributekey!) } return attributeset; }

22 override func attributeset(for object: NSManaged) -> CSSearchableItemAttributeSet? { guard let attributeset = super.attributeset(for: object) else { return nil } if "Photo" == object.entity.name { let photo = object as! Photo let tags = photo.tags let localizedstring = localizedtagstring(photo) attributeset.setvalue(localizedstring, forcustomkey: attributekey!) } return attributeset; }

23 override func attributeset(for object: NSManaged) -> CSSearchableItemAttributeSet? { guard let attributeset = super.attributeset(for: object) else { return nil } if "Photo" == object.entity.name { let photo = object as! Photo let tags = photo.tags let localizedstring = localizedtagstring(photo) attributeset.setvalue(localizedstring, forcustomkey: attributekey!) } return attributeset; }

24 Demo

25 Non-Sharp Corners Will automatically export to Core Spotlight on first launch Uses Persistent History Tracking to ensure all data is pushed

26 Sharpish Corners Core Spotlight and Spotlight integration mutually exclusive entity.corespotlightdisplaynameexpression OR property.storedinexternalrecord Doesn t track results of batch operations

27 Sharpish Corners Entitlement to talk to Core Spotlight com.apple.application-identifier You need to handle the search result public func application(_ application: NSApplication, continue useractivity: NSUserActivity, ([Any]) -> Void) -> Bool

28 public func application(_ application: NSApplication, continue useractivity: NSUserActivity, ([Any]) -> Void) -> Bool { let userinfo = useractivity.userinfo as! NSDictionary let identifier = userinfo.value(forkey: kcssearchableitemactivityidentifier ) let uri = URL(string: identifier as! String) let coordinator = self.persistentcontainer.persistentstorecoordinator let managedid = managedid(forurirepresentation: uri!) } // insert your code here

29 public func application(_ application: NSApplication, continue useractivity: NSUserActivity, ([Any]) -> Void) -> Bool { let userinfo = useractivity.userinfo as! NSDictionary let identifier = userinfo.value(forkey: kcssearchableitemactivityidentifier ) let uri = URL(string: identifier as! String) let coordinator = self.persistentcontainer.persistentstorecoordinator let managedid = managedid(forurirepresentation: uri!) } // insert your code here

30 public func application(_ application: NSApplication, continue useractivity: NSUserActivity, ([Any]) -> Void) -> Bool { let userinfo = useractivity.userinfo as! NSDictionary let identifier = userinfo.value(forkey: kcssearchableitemactivityidentifier ) let uri = URL(string: identifier as! String) let coordinator = self.persistentcontainer.persistentstorecoordinator let managedid = managedid(forurirepresentation: uri!) } // insert your code here

31 public func application(_ application: NSApplication, continue useractivity: NSUserActivity, ([Any]) -> Void) -> Bool { let userinfo = useractivity.userinfo as! NSDictionary let identifier = userinfo.value(forkey: kcssearchableitemactivityidentifier ) let uri = URL(string: identifier as! String) let coordinator = self.persistentcontainer.persistentstorecoordinator let managedid = managedid(forurirepresentation: uri!) } // insert your code here

32 public func application(_ application: NSApplication, continue useractivity: NSUserActivity, ([Any]) -> Void) -> Bool { let userinfo = useractivity.userinfo as! NSDictionary let identifier = userinfo.value(forkey: kcssearchableitemactivityidentifier ) let uri = URL(string: identifier as! String) let coordinator = self.persistentcontainer.persistentstorecoordinator let managedid = managedid(forurirepresentation: uri!) } // insert your code here

33 Sharp Corners Up to you to delete old reference files x86_64 only

34 New Indexing API

35 Indexing Configure database for faster search One or more columns per index One or more indexes per column base will choose most efficient index based on query

36 Digression: Indexing Binary indexes Basic form Strict comparison only RTree indexes Optimized for ranged based searching

37 BTree

38 BTree Index

39 RTree R2 R5 R4 R1 R3 R6 R8 R10 R7 R9

40 RTree Index R1 R2 R6 R10 R4 R5 R3 R7 R8 R9

41 Current Indexing APIs Single property index NSAttributeDescription.isIndexed Multiple column index NSEntityDescription.compoundIndexes

42 Evolving Core Indexing Ability to support more index types More configurable indexing

43 More Powerful API NSFetchIndexDescription NSFetchIndexElementDescription NSEntityDescription.indexes Functions to control index use indexed:by:(indexname, propertyname) noindex:(propertyname)

44 NSFetchIndexElementDescription Property Type Binary RTree Direction

45 NSFetchIndexDescription Specify a single index Name Elements Predicate Validates index composition

46 Sharp Corners Can t mix and match element types Range indexes require numeric properties <= 32-bit Which can t be optional Create indexes last Changing entity hierarchy structurally drops indexes

47 Maybe Sharp Corners? Doesn t affect version hash Won t cause migration (with perf hit) Won t cause migration (user won t get updated indexes) Update model s versionhashmodifier to trigger migration SQL store will ignore unsupported indexes

48 Demo

49 Miscellaneous

50 New Attribute Types NSUUIDAttributeType NSUUID NSURIAttributeType NSURL

51 Persistent History Tracking History 201 Rishi Verma, Core Engineer

52 Story of the App

53 Story of the App Application View Context Background Context

54 Story of the App Application Shared Container Persistent Store View Context Background Context

55 Story of the App Application Shared Container Persistent Store View Context Background Context

56 Story of the App Application Shared Container Persistent Store View Context Background Context

57 Story of the App Application Shared Container Persistent Store View Context Remote Content Background Context

58 Story of the App Application Shared Container Persistent Store View Context Remote Content Background Context Document

59 Story of the App Application Shared Container Persistent Store View Context Remote Content Background Context Document Share

60 Story of the App Application Shared Container Persistent Store View Context Remote Content Background Context Document Share Photo Editing

61 Trains in the Night Application Shared Container Persistent Store View Context Remote Content Background Context Document Share Photo Editing

62 Trains in the Night Application Shared Container Persistent Store View Context Remote Content Background Context Document Share Photo Editing

63 Trains in the Night Application Shared Container Persistent Store View Context Remote Content Background Context Document Share Photo Editing

64 Trains in the Night Application Shared Container Persistent Store View Context Remote Content Background Context Document Share Photo Editing

65 Trains in the Night Shared Container Persistent Store Remote Content Document Share Photo Editing

66 Trains in the Night Application Shared Container Persistent Store View Context Remote Content Background Context Document Share Photo Editing

67 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

68 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

69 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

70 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

71 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

72 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

73 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

74 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

75 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

76 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

77 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

78 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

79 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

80 //Uncovering The Mystery - Made Easy, as simple as ABC let container = NSPersistentContainer(name: "WWDCDemo") let storedescription = container.persistentstoredescriptions.first storedescription?.setoption(true as NSNumber forkey:nspersistenthistorytrackingkey) container.loadpersistentstores { storedescription, error in }

81 //Uncovering The Mystery - Made Easy, as simple as ABC let container = NSPersistentContainer(name: "WWDCDemo") let storedescription = container.persistentstoredescriptions.first storedescription?.setoption(true as NSNumber forkey:nspersistenthistorytrackingkey) container.loadpersistentstores { storedescription, error in }

82 //Uncovering The Mystery - Made Easy, as simple as ABC let container = NSPersistentContainer(name: "WWDCDemo") let storedescription = container.persistentstoredescriptions.first storedescription?.setoption(true as NSNumber forkey:nspersistenthistorytrackingkey) container.loadpersistentstores { storedescription, error in }

83 //Uncovering The Mystery - Made Easy, as simple as ABC let container = NSPersistentContainer(name: "WWDCDemo") let storedescription = container.persistentstoredescriptions.first storedescription?.setoption(true as NSNumber forkey:nspersistenthistorytrackingkey) container.loadpersistentstores { storedescription, error in }

84 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

85 Ghost in the base Document Share Photos Application viewcontext backgroundcontext

86 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps viewcontext backgroundcontext

87 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps viewcontext backgroundcontext

88 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps viewcontext backgroundcontext

89 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps 2 Document Files viewcontext backgroundcontext

90 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps 2 Document Files viewcontext backgroundcontext

91 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps 2 Document Files viewcontext backgroundcontext

92 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps 2 Document Files viewcontext 3 Share Safari backgroundcontext

93 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps 2 Document Files viewcontext 3 Share Safari backgroundcontext

94 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps 2 Document Files viewcontext 3 Share Safari backgroundcontext

95 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps viewcontext 2 Document Files 3 Share Safari backgroundcontext 4 Photos Photos

96 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps viewcontext 2 Document Files 3 Share Safari backgroundcontext 4 Photos Photos

97 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps viewcontext 2 Document Files 3 Share Safari backgroundcontext 4 Photos Photos

98 Ghost in the base Document Share Photos History Application 1 backgroundcontext Apps viewcontext 2 Document Files 3 Share Safari backgroundcontext 4 Photos Photos

99 //Reading History, the journey of a historian NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func fetchhistory(after date: Date) -> Self open class func fetchhistory(after token: NSPersistentHistoryToken?) -> Self open class func fetchhistory(after transaction: NSPersistentHistoryTransaction?) -> Self open var resulttype: NSPersistentHistoryResultType }

100 //Reading History, the journey of a historian NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func fetchhistory(after date: Date) -> Self open class func fetchhistory(after token: NSPersistentHistoryToken?) -> Self open class func fetchhistory(after transaction: NSPersistentHistoryTransaction?) -> Self open var resulttype: NSPersistentHistoryResultType }

101 //Reading History, the journey of a historian NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func fetchhistory(after date: Date) -> Self open class func fetchhistory(after token: NSPersistentHistoryToken?) -> Self open class func fetchhistory(after transaction: NSPersistentHistoryTransaction?) -> Self open var resulttype: NSPersistentHistoryResultType }

102 //Reading History, the journey of a historian NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func fetchhistory(after date: Date) -> Self open class func fetchhistory(after token: NSPersistentHistoryToken?) -> Self open class func fetchhistory(after transaction: NSPersistentHistoryTransaction?) -> Self open var resulttype: NSPersistentHistoryResultType }

103 //Reading History, the journey of a historian NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func fetchhistory(after date: Date) -> Self open class func fetchhistory(after token: NSPersistentHistoryToken?) -> Self open class func fetchhistory(after transaction: NSPersistentHistoryTransaction?) -> Self open var resulttype: NSPersistentHistoryResultType }

104 //Reading History, the journey of a historian NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func fetchhistory(after date: Date) -> Self open class func fetchhistory(after token: NSPersistentHistoryToken?) -> Self open class func fetchhistory(after transaction: NSPersistentHistoryTransaction?) -> Self open var resulttype: NSPersistentHistoryResultType }

105 //Reducing History, history is purged by the consumers NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func deletehistory(before date: Date) -> Self open class func deletehistory(before token: NSPersistentHistoryToken?) -> Self open class func deletehistory(before transaction: NSPersistentHistoryTransaction?) -> Self } //A single gatekeeper should be in charge of purging history

106 //Reducing History, history is purged by the consumers NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func deletehistory(before date: Date) -> Self open class func deletehistory(before token: NSPersistentHistoryToken?) -> Self open class func deletehistory(before transaction: NSPersistentHistoryTransaction?) -> Self } //A single gatekeeper should be in charge of purging history

107 //Reducing History, history is purged by the consumers NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func deletehistory(before date: Date) -> Self open class func deletehistory(before token: NSPersistentHistoryToken?) -> Self open class func deletehistory(before transaction: NSPersistentHistoryTransaction?) -> Self } //A single gatekeeper should be in charge of purging history

108 //Reducing History, history is purged by the consumers NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func deletehistory(before date: Date) -> Self open class func deletehistory(before token: NSPersistentHistoryToken?) -> Self open class func deletehistory(before transaction: NSPersistentHistoryTransaction?) -> Self } //A single gatekeeper should be in charge of purging history

109 //Reducing History, history is purged by the consumers NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func deletehistory(before date: Date) -> Self open class func deletehistory(before token: NSPersistentHistoryToken?) -> Self open class func deletehistory(before transaction: NSPersistentHistoryTransaction?) -> Self } //A single gatekeeper should be in charge of purging history

110 //Reducing History, history is purged by the consumers NEW open class NSPersistentHistoryChangeRequest : NSPersistentStoreRequest { open class func deletehistory(before date: Date) -> Self open class func deletehistory(before token: NSPersistentHistoryToken?) -> Self open class func deletehistory(before transaction: NSPersistentHistoryTransaction?) -> Self } //A single gatekeeper should be in charge of purging history

111 //NSPersistentHistoryTransaction NEW open class NSPersistentHistoryTransaction : NS, NSCopying { open var timestamp: Date { get } open var changes: [NSPersistentHistoryChange]? { get } open var transactionnumber: Int64 { get } open var storeid: String { get } open var bundleid: String { get } open var processid: String { get } open var contextname: String? { get } open var author: String? { get } open var token: NSPersistentHistoryToken { get } } // Get a notification that can be consumed by a NSManagedContext open func objectidnotification() -> Notification

112 //NSPersistentHistoryTransaction NEW open class NSPersistentHistoryTransaction : NS, NSCopying { open var timestamp: Date { get } open var changes: [NSPersistentHistoryChange]? { get } open var transactionnumber: Int64 { get } open var storeid: String { get } open var bundleid: String { get } open var processid: String { get } open var contextname: String? { get } open var author: String? { get } open var token: NSPersistentHistoryToken { get } } // Get a notification that can be consumed by a NSManagedContext open func objectidnotification() -> Notification

113 //NSPersistentHistoryTransaction NEW open class NSPersistentHistoryTransaction : NS, NSCopying { open var timestamp: Date { get } open var changes: [NSPersistentHistoryChange]? { get } open var transactionnumber: Int64 { get } open var storeid: String { get } open var bundleid: String { get } open var processid: String { get } open var contextname: String? { get } open var author: String? { get } open var token: NSPersistentHistoryToken { get } } // Get a notification that can be consumed by a NSManagedContext open func objectidnotification() -> Notification

114 //NSPersistentHistoryTransaction NEW open class NSPersistentHistoryTransaction : NS, NSCopying { open var timestamp: Date { get } open var changes: [NSPersistentHistoryChange]? { get } open var transactionnumber: Int64 { get } open var storeid: String { get } open var bundleid: String { get } open var processid: String { get } open var contextname: String? { get } open var author: String? { get } open var token: NSPersistentHistoryToken { get } } // Get a notification that can be consumed by a NSManagedContext open func objectidnotification() -> Notification

115 //NSManagedContext NEW /* Set the author for the context, this will be used as an identifier in the Persistent History Transactions (NSPersistentHistoryTransaction) */ open var transactionauthor: String?

116 //NSPersistentHistoryChange NEW public enum NSPersistentHistoryChangeType : Int { case insert case update case delete } open class NSPersistentHistoryChange : NS, NSCopying { open var changeid: Int64 { get open var changedid: NSManagedID { get } open var changetype: NSPersistentHistoryChangeType { get } open var tombstone: [AnyHashable : Any]? { get } open var transaction: NSPersistentHistoryTransaction? { get } open var updatedproperties: Set<NSPropertyDescription>? { get } }

117 //NSPersistentHistoryChange NEW public enum NSPersistentHistoryChangeType : Int { case insert case update case delete } open class NSPersistentHistoryChange : NS, NSCopying { open var changeid: Int64 { get open var changedid: NSManagedID { get } open var changetype: NSPersistentHistoryChangeType { get } open var tombstone: [AnyHashable : Any]? { get } open var transaction: NSPersistentHistoryTransaction? { get } open var updatedproperties: Set<NSPropertyDescription>? { get } }

118 //NSPersistentHistoryChange NEW public enum NSPersistentHistoryChangeType : Int { case insert case update case delete } open class NSPersistentHistoryChange : NS, NSCopying { open var changeid: Int64 { get open var changedid: NSManagedID { get } open var changetype: NSPersistentHistoryChangeType { get } open var tombstone: [AnyHashable : Any]? { get } open var transaction: NSPersistentHistoryTransaction? { get } open var updatedproperties: Set<NSPropertyDescription>? { get } }

119 //NSPersistentHistoryChange NEW public enum NSPersistentHistoryChangeType : Int { case insert case update case delete } open class NSPersistentHistoryChange : NS, NSCopying { open var changeid: Int64 { get open var changedid: NSManagedID { get } open var changetype: NSPersistentHistoryChangeType { get } open var tombstone: [AnyHashable : Any]? { get } open var transaction: NSPersistentHistoryTransaction? { get } open var updatedproperties: Set<NSPropertyDescription>? { get } }

120 Model Editor

121 Model Editor

122 Demo History In Action!

123 Recap History is fun!

124 Recap History is fun! Simple to enable Persistent History

125 Recap History is fun! Simple to enable Persistent History Uncover missing changes

126 Recap History is fun! Simple to enable Persistent History Uncover missing changes Never be in the dark again!

127 Migration Easy as pie

128 Migration Easy as pie We preserve as much history as possible

129 Migration Easy as pie We preserve as much history as possible Except when removing:

130 Migration Easy as pie We preserve as much history as possible Except when removing: Entities

131 Migration Easy as pie We preserve as much history as possible Except when removing: Entities Tombstones

132 Migration Easy as pie We preserve as much history as possible Except when removing: Entities Tombstones We will preserve the history until the last transaction that is complete

133 Performance Everything has consequences

134 Performance Everything has consequences Slight impact on save-and-batch operations

135 Performance Everything has consequences Slight impact on save-and-batch operations An increase in memory during such operations

136 Performance Everything has consequences Slight impact on save-and-batch operations An increase in memory during such operations Small storage overhead, but history can be purged

137 Summary

138 Summary CoreSpotlight easily share your app data with Spotlight

139 Summary CoreSpotlight easily share your app data with Spotlight New Indexing API faster searches, faster apps

140 Summary CoreSpotlight easily share your app data with Spotlight New Indexing API faster searches, faster apps Persistent History always know who dun it

141

142 More Information

143 Related Sessions What s New in Cocoa Video Online What s New in Foundation Hall 2 Wednesday 11:00 AM Build Better Apps with CloudKit Dashboard Grand Ballroom B Thursday 10:00 AM What s New in Core Spotlight for ios and macos Grand Ballroom B Thursday 4:10 PM Cocoa Development Tips Grand Ballroom B Friday 9:00 AM

144 Labs Cocoa Lab Technology Lab C Wed 11:00AM-1:00PM Foundation Lab Technology Lab C Wed 1:00PM-3:30PM Core Lab Technology Lab C Wed 3:10PM-6:00PM CloudKit and icloud Lab Technology Lab C Thu 11:00AM-1:00PM Core Lab Technology Lab H Thu 4:10PM-6:00PM CoreSpotlight and Search Lab Technology Lab H Fri 9:00AM-11:00AM Cocoa Lab Technology Lab B Fri 1:50PM-3:20PM

145

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

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

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

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

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

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

Modern User Interaction on ios

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

More information

Mastering Drag and Drop

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

More information

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

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

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

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

Core Data Best Practices

Core Data Best Practices #WWDC18 Core Data Best Practices Session 224 Scott Perry, Engineer Nick Gillett, Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

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

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

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

Automatic Strong Passwords and Security Code AutoFill

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

More information

Introducing On Demand Resources

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

More information

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

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

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

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

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

Introducing Search APIs

Introducing Search APIs System Frameworks #WWDC15 Introducing Search APIs Increase app usage and discoverability Session 709 Vipul Ved Prakash Siri Dave Salim Siri Jason Douglas Siri 2015 Apple Inc. All rights reserved. Redistribution

More information

imessage Apps and Stickers, Part 2

imessage Apps and Stickers, Part 2 App Frameworks #WWDC16 imessage Apps and Stickers, Part 2 Interactive Messages Session 224 Alex Carter Messages Engineer Stephen Lottermoser Messages Engineer 2016 Apple Inc. All rights reserved. Redistribution

More information

What s New in Cocoa for macos

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

More information

Introducing CloudKit. A how-to guide for icloud for your Apps. Frameworks #WWDC14. Session 208 Olivier Bonnet CloudKit Client Software

Introducing CloudKit. A how-to guide for icloud for your Apps. Frameworks #WWDC14. Session 208 Olivier Bonnet CloudKit Client Software Frameworks #WWDC14 Introducing CloudKit A how-to guide for icloud for your Apps Session 208 Olivier Bonnet CloudKit Client Software 2014 Apple Inc. All rights reserved. Redistribution or public display

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

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

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

What s New in SiriKit

What s New in SiriKit Session App Frameworks #WWDC17 What s New in SiriKit 214 Sirisha Yerroju, SiriKit Engineer Tin Tran, SiriKit Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

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

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

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

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

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

Enabling Your App for CarPlay

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

More information

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

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

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

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

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

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

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

Use the API or contact customer service to provide us with the following: General ios Android App Name (friendly one-word name)

Use the API or contact customer service to provide us with the following: General ios Android App Name (friendly one-word name) Oplytic Attribution V 1.2.0 December 2017 Oplytic provides attribution for app-to-app and mobile-web-to-app mobile marketing. Oplytic leverages the tracking provided by Universal Links (ios) and App Links

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

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

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

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

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

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

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

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

Introducing the Photos Frameworks

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

More information

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

Introducing Metal 2. Graphics and Games #WWDC17. Michal Valient, GPU Software Engineer Richard Schreyer, GPU Software Engineer

Introducing Metal 2. Graphics and Games #WWDC17. Michal Valient, GPU Software Engineer Richard Schreyer, GPU Software Engineer Session Graphics and Games #WWDC17 Introducing Metal 2 601 Michal Valient, GPU Software Engineer Richard Schreyer, GPU Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display

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

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

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

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

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

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

Building Better Apps with Value Types in Swift Session 414

Building Better Apps with Value Types in Swift Session 414 Developer Tools #WWDC15 Building Better Apps with Value Types in Swift Session 414 Doug Gregor Language Lawyer Bill Dudney Arranger of Bits 2015 Apple Inc. All rights reserved. Redistribution or public

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

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

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

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

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

ios Configuration and APIs for Kiosk and Assessment Apps

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

More information

Advanced Notifications

Advanced Notifications System Frameworks #WWDC16 Advanced Notifications Session 708 Michele Campeotto ios Notifications 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

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

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

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

Building Apps with Dynamic Type

Building Apps with Dynamic Type Session App Frameworks #WWDC17 Building Apps with Dynamic Type 245 Clare Kasemset, Software Engineering Manager Nandini Sundar, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or

More information

What s New in Energy Debugging

What s New in Energy Debugging #WWDC18 What s New in Energy Debugging Phillip Azar, Apple/Battery Life David Choi, Apple/Battery Life 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Creating Extensions for Safari

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

More information

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

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

Settings. Mobile Application Development in ios School of EECS Washington State University Instructor: Larry Holder Settings Mobile Application Development in ios School of EECS Washington State University Instructor: Larry Holder Mobile Application Development in ios 1 Outline In-app settings UserDefaults Device settings

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

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

CS 371L - Mobile Computing (ios) Dr. William C. Bulko. CS 371L Mobile Computing (ios) Introduction

CS 371L - Mobile Computing (ios) Dr. William C. Bulko. CS 371L Mobile Computing (ios) Introduction CS 371L - Mobile Computing (ios) Dr. William C. Bulko CS 371L Mobile Computing (ios) Introduction 2014 The Evolution of Computing Mainframes Minicomputers - fridge-size PCs - desktop and deskside Laptops

More information

What s New in Core Location

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

More information

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

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

Getting Published in Apple News

Getting Published in Apple News Media #WWDC16 Getting Published in Apple News Session 502 Ryan Griggs Apple News 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

More information

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

ios 9 Day by Day Also by shinobicontrols This version was published Scott Logic Ltd

ios 9 Day by Day Also by shinobicontrols This version was published Scott Logic Ltd ios 9 Day by Day This version was published 2016-01-13 2014-2016 Scott Logic Ltd Also by shinobicontrols About this book Welcome to ios 9 Day by Day, the latest in our Day by Day series covering all that

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

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

ITP 342 Mobile App Development. Data Persistence

ITP 342 Mobile App Development. Data Persistence ITP 342 Mobile App Development Data Persistence Persistent Storage Want our app to save its data to persistent storage Any form of nonvolatile storage that survives a restart of the device Want a user

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

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