Getting the Most Out of HealthKit

Size: px
Start display at page:

Download "Getting the Most Out of HealthKit"

Transcription

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

2

3 Authorization

4 Authorization Activity Rings

5 Authorization Activity Rings Health Records

6 Authorization Activity Rings Health Records Handling Data

7 Authorization

8 Authorization Overview

9 Authorization Overview Users are in control

10 Authorization Overview Users are in control ios mediates authorization requests

11 Authorization Overview Users are in control ios mediates authorization requests Permissions may change at any time

12 Authorization Overview Users are in control ios mediates authorization requests Permissions may change at any time Read and write authorization are independent

13 Authorization Read/write permissions Permissions Can Query? Can Save? Read + Write Yes Yes Read Yes No Write Own data only Yes None No No

14 Authorization Read/write permissions Permissions Can Query? Can Save? Read + Write Yes Yes Read Yes No Write Own data only Yes None No No

15 Authorization Read/write permissions Permissions Can Query? Can Save? Read + Write Yes Yes Read Yes No Write Own data only Yes None No No

16 Authorization Read/write permissions Permissions Can Query? Can Save? Read + Write Yes Yes Read Yes No Write Own Data Only Yes None No No

17 Authorization Read/write permissions Permissions Can Query? Can Save? Read + Write Yes Yes Read Yes No Write Own Data Only Yes None No No

18 Authorization NEW Usage descriptions

19 Authorization NEW Usage descriptions Apps must explain how they will use Health data

20 Authorization NEW Usage descriptions Apps must explain how they will use Health data Statically declared in Info.plist

21 Authorization NEW Usage descriptions Apps must explain how they will use Health data Statically declared in Info.plist NSHealthShareUsageDescription

22 Authorization NEW Usage descriptions Apps must explain how they will use Health data Statically declared in Info.plist NSHealthShareUsageDescription NSHealthUpdateUsageDescription

23 // Requesting Authorization import HealthKit guard HKHealthStore.isHealthDataAvailable() else { return } let healthstore = HKHealthStore() let shareabletypes = Set([... ]) let readabletypes = Set([... ]) // Presents authorization sheet to user the first time this is called. healthstore.requestauthorization(toshare: shareabletypes, read: readabletypes) { success, error in // Handle authorization response here. }

24 // Requesting Authorization import HealthKit guard HKHealthStore.isHealthDataAvailable() else { return } let healthstore = HKHealthStore() let shareabletypes = Set([... ]) let readabletypes = Set([... ]) // Presents authorization sheet to user the first time this is called. healthstore.requestauthorization(toshare: shareabletypes, read: readabletypes) { success, error in // Handle authorization response here. }

25 // Requesting Authorization import HealthKit guard HKHealthStore.isHealthDataAvailable() else { return } let healthstore = HKHealthStore() let shareabletypes = Set([... ]) let readabletypes = Set([... ]) // Presents authorization sheet to user the first time this is called. healthstore.requestauthorization(toshare: shareabletypes, read: readabletypes) { success, error in // Handle authorization response here. }

26 // Requesting Authorization import HealthKit guard HKHealthStore.isHealthDataAvailable() else { return } let healthstore = HKHealthStore() let shareabletypes = Set([... ]) let readabletypes = Set([... ]) // Presents authorization sheet to user the first time this is called. healthstore.requestauthorization(toshare: shareabletypes, read: readabletypes) { success, error in // Handle authorization response here. }

27 Authorization watchos

28 Authorization watchos Shared with your iphone app

29 Authorization watchos Shared with your iphone app Approval requires interaction with iphone

30 Authorization watchos Shared with your iphone app Approval requires interaction with iphone May not be easily accessible

31 Authorization watchos Shared with your iphone app Approval requires interaction with iphone May not be easily accessible May be out of range

32 Authorization Best practices

33 Authorization Best practices Make initial requests in sensible groupings of types

34 Authorization Best practices Make initial requests in sensible groupings of types Option: Request all your app s types during on-boarding

35 Authorization Best practices Make initial requests in sensible groupings of types Option: Request all your app s types during on-boarding Reset authorization frequently during development

36 Authorization Best practices Make initial requests in sensible groupings of types Option: Request all your app s types during on-boarding Reset authorization frequently during development Test delaying/denying authorization

37 Authorization Best practices Make initial requests in sensible groupings of types Option: Request all your app s types during on-boarding Reset authorization frequently during development Test delaying/denying authorization Do what s best for the user

38 Activity Rings

39

40 Activity Rings HKActivitySummary

41 Activity Rings HKActivitySummary Daily activity values

42 Activity Rings HKActivitySummary Daily activity values Move calories and goal

43 Activity Rings HKActivitySummary Daily activity values Move calories and goal Exercise minutes and goal

44 Activity Rings HKActivitySummary Daily activity values Move calories and goal Exercise minutes and goal Stand hours and goal

45 Activity Rings HKActivitySummary

46 Activity Rings HKActivitySummary Distinct type for authorization

47 Activity Rings HKActivitySummary Distinct type for authorization Daily aggregated totals

48 Activity Rings HKActivitySummary Distinct type for authorization Daily aggregated totals Day specified as DateComponents

49 // HKActivitySummaryQuery import HealthKit let healthstore = HKHealthStore() let calendar = Calendar.current() var components = calendar.components([.era,.year,.month,.day], from:date()) components.calendar = calendar let predicate = Predicate(format: "%K = %@", HKPredicateKeyPathDateComponents, components) let query = HKActivitySummaryQuery(predicate: predicate) { query, summaries, error in guard let todayactivitysummary = summaries?.first else { return } // Display todayactivitysummary's data. } healthstore.execute(query)

50 // HKActivitySummaryQuery import HealthKit let healthstore = HKHealthStore() let calendar = Calendar.current() var components = calendar.components([.era,.year,.month,.day], from:date()) components.calendar = calendar let predicate = Predicate(format: "%K = %@", HKPredicateKeyPathDateComponents, components) let query = HKActivitySummaryQuery(predicate: predicate) { query, summaries, error in guard let todayactivitysummary = summaries?.first else { return } // Display todayactivitysummary's data. } healthstore.execute(query)

51 // HKActivitySummaryQuery import HealthKit let healthstore = HKHealthStore() let calendar = Calendar.current() var components = calendar.components([.era,.year,.month,.day], from:date()) components.calendar = calendar let predicate = Predicate(format: "%K = %@", HKPredicateKeyPathDateComponents, components) let query = HKActivitySummaryQuery(predicate: predicate) { query, summaries, error in guard let todayactivitysummary = summaries?.first else { return } // Display todayactivitysummary's data. } healthstore.execute(query)

52 // HKActivitySummaryQuery import HealthKit let healthstore = HKHealthStore() let calendar = Calendar.current() var components = calendar.components([.era,.year,.month,.day], from:date()) components.calendar = calendar let predicate = Predicate(format: "%K = %@", HKPredicateKeyPathDateComponents, components) let query = HKActivitySummaryQuery(predicate: predicate) { query, summaries, error in guard let todayactivitysummary = summaries?.first else { return } // Display todayactivitysummary's data. } healthstore.execute(query)

53 Activity Rings HKActivityRingView and WKInterfaceActivityRing

54 Activity Rings HKActivityRingView and WKInterfaceActivityRing

55 Activity Rings HKActivityRingView and WKInterfaceActivityRing

56 Activity Rings Tips

57 Activity Rings Tips Rings look best on black background

58 Activity Rings Tips Rings look best on black background Construct an HKActivitySummary to represent another user s rings

59 Activity Rings Tips Rings look best on black background Construct an HKActivitySummary to represent another user s rings Provide era, year, month, and day in your DateComponents

60 Activity Rings Tips Rings look best on black background Construct an HKActivitySummary to represent another user s rings Provide era, year, month, and day in your DateComponents Solutions to Common Date and Time Challenges WWDC 2013

61 Demo Authorization and activity rings

62 Health Records Jeff Kibuule ios Software Engineer

63 Health Records Current experience

64 Health Records Current experience

65 Health Records Current experience

66 Health Records Current experience

67 Health Records NEW Overview

68 Health Records NEW Overview Represent different types of patient visits

69 Health Records NEW Overview Represent different types of patient visits

70 Health Records NEW Overview Represent different types of patient visits Support international HL-7 CDA standard

71 Health Records NEW Overview Represent different types of patient visits Support international HL-7 CDA standard Available through patient health care portals

72 Health Records NEW Overview Represent different types of patient visits Support international HL-7 CDA standard Available through patient health care portals Imported via Safari, Mail, and your apps

73 Health Records NEW Overview Represent different types of patient visits Support international HL-7 CDA standard Available through patient health care portals Imported via Safari, Mail, and your apps Stored securely

74 Health Records Permissions

75 Health Records Permissions Access granted on a per document basis

76 Health Records Permissions Access granted on a per document basis UI presented to grant access

77 Health Records Permissions Access granted on a per document basis UI presented to grant access Queries will

78 Health Records Permissions Access granted on a per document basis UI presented to grant access Queries will Prompt UI if new documents available

79 Health Records Permissions Access granted on a per document basis UI presented to grant access Queries will Prompt UI if new documents available Return immediately if no new documents

80 Health Records Permissions Access granted on a per document basis UI presented to grant access Queries will Prompt UI if new documents available Return immediately if no new documents Never prompt in background

81 Health Records Creating

82 Health Records Creating Save raw XML document as Data into HKCDADocumentSample type

83 Health Records Creating Save raw XML document as Data into HKCDADocumentSample type Validated on sample creation

84 Health Records Creating Save raw XML document as Data into HKCDADocumentSample type Validated on sample creation Title, patient, custodian, and author names extracted automatically

85 // Creating a Health Document Using HKCDADocumentSample let today = Date() let documentdata: Data =... // XML from health organization server do { let cdasample = try HKCDADocumentSample.init(data: documentdata, start: today, end: today, metadata: nil) healthstore.save(cdasample) { success, error in // Handle saving error here... } } catch { // Handle validation error creating sample here... }

86 // Creating a Health Document Using HKCDADocumentSample let today = Date() let documentdata: Data =... // XML from health organization server do { let cdasample = try HKCDADocumentSample.init(data: documentdata, start: today, end: today, metadata: nil) healthstore.save(cdasample) { success, error in // Handle saving error here... } } catch { // Handle validation error creating sample here... }

87 // Creating a Health Document Using HKCDADocumentSample let today = Date() let documentdata: Data =... // XML from health organization server do { let cdasample = try HKCDADocumentSample.init(data: documentdata, start: today, end: today, metadata: nil) healthstore.save(cdasample) { success, error in // Handle saving error here... } } catch { // Handle validation error creating sample here... }

88 // Creating a Health Document Using HKCDADocumentSample let today = Date() let documentdata: Data =... // XML from health organization server do { let cdasample = try HKCDADocumentSample.init(data: documentdata, start: today, end: today, metadata: nil) healthstore.save(cdasample) { success, error in // Handle saving error here... } } catch { // Handle validation error creating sample here... }

89 Health Records Querying

90 Health Records Querying Existing query objects continue to work

91 Health Records Querying Existing query objects continue to work Need to use HKDocumentQuery to fetch raw XML

92 Health Records Querying Existing query objects continue to work Need to use HKDocumentQuery to fetch raw XML Predicate support for searching based on extracted fields

93 Health Records Querying Existing query objects continue to work Need to use HKDocumentQuery to fetch raw XML Predicate support for searching based on extracted fields Document updates are considered new documents

94 // Querying for Health Documents Using HKDocumentQuery guard let documenttype = HKObjectType.documentType(forIdentifier:.CDA) else { return } let cdaquery = HKDocumentQuery(documentType: documenttype, predicate: nil, limit: HKObjectQueryNoLimit, sortdescriptors: nil, includedocumentdata: false) { query, samples, done, error in // Handle HKCDADocumentSamples here... } healthstore.execute(cdaquery)

95 // Querying for Health Documents Using HKDocumentQuery guard let documenttype = HKObjectType.documentType(forIdentifier:.CDA) else { return } let cdaquery = HKDocumentQuery(documentType: documenttype, predicate: nil, limit: HKObjectQueryNoLimit, sortdescriptors: nil, includedocumentdata: false) { query, samples, done, error in // Handle HKCDADocumentSamples here... } healthstore.execute(cdaquery)

96 // Querying for Health Documents Using HKDocumentQuery guard let documenttype = HKObjectType.documentType(forIdentifier:.CDA) else { return } let cdaquery = HKDocumentQuery(documentType: documenttype, predicate: nil, limit: HKObjectQueryNoLimit, sortdescriptors: nil, includedocumentdata: false) { query, samples, done, error in // Handle HKCDADocumentSamples here... } healthstore.execute(cdaquery)

97 // Querying for Health Documents Using HKDocumentQuery guard let documenttype = HKObjectType.documentType(forIdentifier:.CDA) else { return } let cdaquery = HKDocumentQuery(documentType: documenttype, predicate: nil, limit: HKObjectQueryNoLimit, sortdescriptors: nil, includedocumentdata: false) { query, samples, done, error in // Handle HKCDADocumentSamples here... } healthstore.execute(cdaquery)

98 // Querying for Health Documents Using HKDocumentQuery guard let documenttype = HKObjectType.documentType(forIdentifier:.CDA) else { return } let cdaquery = HKDocumentQuery(documentType: documenttype, predicate: nil, limit: HKObjectQueryNoLimit, sortdescriptors: nil, includedocumentdata: false) { query, samples, done, error in // Handle HKCDADocumentSamples here... } healthstore.execute(cdaquery)

99 Health Records Best practices

100 Health Records Best practices Check validation errors

101 Health Records Best practices Check validation errors Verify with Health app

102 Health Records Best practices Check validation errors Verify with Health app Request raw XML document only when needed

103 HL-7 CDA Standard product_brief.cfm?product_id=7

104 Handling Data

105 Handling Data

106 Handling Data Your App App #2 App #3

107 Handling Data Your App App #2 App #3

108 Handling Data Your Cloud Your App App #2 App #3

109 Handling Data Your Cloud App #2 Cloud Your App App #2 App #3

110 Handling Data

111 Handling Data Syncing data

112 Handling Data Syncing data Tracking changed data

113 Handling Data Syncing data Tracking changed data Migrating data

114 Handling Data Syncing data

115 Handling Data Syncing data Use HKAnchoredObjectQuery

116 Handling Data Syncing data Use HKAnchoredObjectQuery Anchors let you pick up where you last left off

117 Handling Data Syncing data Use HKAnchoredObjectQuery Anchors let you pick up where you last left off One query per sample type

118 Handling Data Syncing data Use HKAnchoredObjectQuery Anchors let you pick up where you last left off One query per sample type Use an update handler

119 Handling Data Background updates

120 Handling Data Background updates Setup Execution

121 Handling Data Background updates 1 Register for Background Updates Setup Execution

122 Handling Data Background updates 1 Register for Background Updates Setup 2 Open HKObserverQuery Execution

123 Handling Data Background updates 1 Register for Background Updates Setup 2 Open HKObserverQuery Execution 3 HKObserverQuery callback; Execute HKAnchoredObjectQuery

124 Handling Data Background updates 1 Register for Background Updates Setup 2 Open HKObserverQuery Execution 3 HKObserverQuery callback; Execute HKAnchoredObjectQuery 4 Call HKObserverQuery Completion Handler

125 Handling Data Background updates 1 Register for Background Updates Setup 2 Open HKObserverQuery Execution 3 HKObserverQuery callback; Execute HKAnchoredObjectQuery 4 Call HKObserverQuery Completion Handler

126 // Syncing Data // 1. Register for background updates func application(_ application: UIApplication, didfinishlaunchingwithoptions launchoptions: [NSObject: AnyObject]?) -> Bool { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { } return true healthstore.enablebackgrounddelivery(for: stepstype, frequency:.daily) { success, error in // Handle enabling background delivery error here... } } return true

127 // Syncing Data // 1. Register for background updates func application(_ application: UIApplication, didfinishlaunchingwithoptions launchoptions: [NSObject: AnyObject]?) -> Bool { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { } return true healthstore.enablebackgrounddelivery(for: stepstype, frequency:.daily) { success, error in // Handle enabling background delivery error here... } } return true

128 // Syncing Data // 1. Register for background updates func application(_ application: UIApplication, didfinishlaunchingwithoptions launchoptions: [NSObject: AnyObject]?) -> Bool { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { } return true healthstore.enablebackgrounddelivery(for: stepstype, frequency:.daily) { success, error in // Handle enabling background delivery error here... } } return true

129 // Syncing Data // 1. Register for background updates func application(_ application: UIApplication, didfinishlaunchingwithoptions launchoptions: [NSObject: AnyObject]?) -> Bool { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { } return true healthstore.enablebackgrounddelivery(for: stepstype, frequency:.daily) { success, error in // Handle enabling background delivery error here... } } return true

130 // Syncing Data // 2. Open observer query guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { return } let query = HKObserverQuery(sampleType: stepstype, predicate: nil) { query, completionhandler, error in self.updatesteps() { completionhandler() } } healthstore.execute(query)

131 // Syncing Data // 2. Open observer query guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { return } let query = HKObserverQuery(sampleType: stepstype, predicate: nil) { query, completionhandler, error in self.updatesteps() { completionhandler() } } healthstore.execute(query)

132 // Syncing Data // 2. Open observer query guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { return } let query = HKObserverQuery(sampleType: stepstype, predicate: nil) { query, completionhandler, error in self.updatesteps() { completionhandler() } } healthstore.execute(query)

133 // Syncing Data // 2. Open observer query guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { return } let query = HKObserverQuery(sampleType: stepstype, predicate: nil) { query, completionhandler, error in self.updatesteps() { completionhandler() } } healthstore.execute(query)

134 // Syncing Data // 3. Execute anchored objected query func updatesteps(completionhandler: () -> Void) { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else {return} let anchoredquery = HKAnchoredObjectQuery(type: stepstype, predicate: nil, anchor: self.anchor, limit: Int(HKObjectQueryNoLimit)) { [unowned self] query, newsamples, deletedsamples, newanchor, error -> Void in self.handlesteps(new: newsamples, deleted: deletedsamples) self.update(anchor: newanchor) completionhandler() } healthstore.execute(anchoredquery) }

135 // Syncing Data // 3. Execute anchored objected query func updatesteps(completionhandler: () -> Void) { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else {return} let anchoredquery = HKAnchoredObjectQuery(type: stepstype, predicate: nil, anchor: self.anchor, limit: Int(HKObjectQueryNoLimit)) { [unowned self] query, newsamples, deletedsamples, newanchor, error -> Void in self.handlesteps(new: newsamples, deleted: deletedsamples) self.update(anchor: newanchor) completionhandler() } healthstore.execute(anchoredquery) }

136 // Syncing Data // 3. Execute anchored objected query func updatesteps(completionhandler: () -> Void) { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else {return} let anchoredquery = HKAnchoredObjectQuery(type: stepstype, predicate: nil, anchor: self.anchor, limit: Int(HKObjectQueryNoLimit)) { [unowned self] query, newsamples, deletedsamples, newanchor, error -> Void in self.handlesteps(new: newsamples, deleted: deletedsamples) self.update(anchor: newanchor) completionhandler() } healthstore.execute(anchoredquery) }

137 // Syncing Data // 3. Execute anchored objected query func updatesteps(completionhandler: () -> Void) { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else {return} let anchoredquery = HKAnchoredObjectQuery(type: stepstype, predicate: nil, anchor: self.anchor, limit: Int(HKObjectQueryNoLimit)) { [unowned self] query, newsamples, deletedsamples, newanchor, error -> Void in self.handlesteps(new: newsamples, deleted: deletedsamples) self.update(anchor: newanchor) completionhandler() } healthstore.execute(anchoredquery) }

138 // Syncing Data // 3. Execute anchored objected query func updatesteps(completionhandler: () -> Void) { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else {return} let anchoredquery = HKAnchoredObjectQuery(type: stepstype, predicate: nil, anchor: self.anchor, limit: Int(HKObjectQueryNoLimit)) { [unowned self] query, newsamples, deletedsamples, newanchor, error -> Void in self.handlesteps(new: newsamples, deleted: deletedsamples) self.update(anchor: newanchor) completionhandler() } healthstore.execute(anchoredquery) }

139 // Syncing Data // 3. Execute anchored objected query func updatesteps(completionhandler: () -> Void) { guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else {return} let anchoredquery = HKAnchoredObjectQuery(type: stepstype, predicate: nil, anchor: self.anchor, limit: Int(HKObjectQueryNoLimit)) { [unowned self] query, newsamples, deletedsamples, newanchor, error -> Void in self.handlesteps(new: newsamples, deleted: deletedsamples) self.update(anchor: newanchor) completionhandler() } healthstore.execute(anchoredquery) }

140 // Syncing Data // 4. Call observer query completion handler guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { return } let query = HKObserverQuery(sampleType: stepstype, predicate: nil) { query, completionhandler, error in self.updatesteps() { completionhandler() } } healthstore.execute(query)

141 // Syncing Data // 4. Call observer query completion handler guard let stepstype = HKObjectType.quantityType(forIdentifier:.stepCount) else { return } let query = HKObserverQuery(sampleType: stepstype, predicate: nil) { query, completionhandler, error in self.updatesteps() { completionhandler() } } healthstore.execute(query)

142 Tracking Changed Data

143 Tracking Changed Data Use UUIDs to keep track of unique HKObjects

144 Tracking Changed Data Use UUIDs to keep track of unique HKObjects Record UUIDs of HKObjects in your own data store

145 Tracking Changed Data Use UUIDs to keep track of unique HKObjects Record UUIDs of HKObjects in your own data store When samples are deleted, remove data corresponding to those UUIDs

146 Tracking Changed Data Use UUIDs to keep track of unique HKObjects Record UUIDs of HKObjects in your own data store When samples are deleted, remove data corresponding to those UUIDs Ensure sync doesn t re-add already deleted samples

147 Duplication Potential problems

148 Duplication Potential problems Pre-populating data during on-boarding saves time

149 Duplication Potential problems Pre-populating data during on-boarding saves time Users can verify/change data

150 Duplication Potential problems Pre-populating data during on-boarding saves time Users can verify/change data Problem: Saving unchanged values

151 Duplication Potential problems Pre-populating data during on-boarding saves time Users can verify/change data Problem: Saving unchanged values Only save data again if this is the user s intent

152 Duplication Potential problems Your App App #2

153 Duplication Potential problems Problem: Ingesting information from another app and HealthKit Your App App #2

154 Duplication Potential problems Problem: Ingesting information from another app and HealthKit Pick only one source most appropriate to your app Your App App #2

155 Duplication Potential problems Problem: Ingesting information from another app and HealthKit Pick only one source most appropriate to your app Your App App #2 Do not save data on another app s behalf

156 Duplication Potential problems Problem: Ingesting information from another app and HealthKit Pick only one source most appropriate to your app Your App App #2 Do not save data on another app s behalf Write only your own data once

157 Duplication Exceptions

158 Duplication Exceptions Sometimes duplication is intentional

159 Duplication Exceptions Sometimes duplication is intentional Data from multiple sources

160 Duplication Exceptions Sometimes duplication is intentional Data from multiple sources HKStatisticsQuery and HKStatisticsCollectionQuery automatically de-duplicate data

161 Duplication Exceptions Sometimes duplication is intentional Data from multiple sources HKStatisticsQuery and HKStatisticsCollectionQuery automatically de-duplicate data Order of preferred data sources can change in Health app

162 Migrating Data

163 Migrating Data

164 Migrating Data 98 C

165 Migrating Data Find Old Samples 98 C

166 Migrating Data Find Old Samples 98 C Write New Samples 98 F

167 Migrating Data Find Old Samples 98 F Write New Samples Delete Old Samples

168 Handling Data NEW Flow between iphone and Apple Watch

169 Handling Data NEW Flow between iphone and Apple Watch Recent samples from iphone are periodically ios 9.3 synced to Apple Watch Time iphone Apple Watch

170 Handling Data NEW Flow between iphone and Apple Watch Recent samples from iphone are periodically ios 9.3 synced to Apple Watch Samples on Apple Watch are pruned by end date Time iphone Apple Watch

171 Handling Data NEW Flow between iphone and Apple Watch Recent samples from iphone are periodically ios 9.3 synced to Apple Watch Samples on Apple Watch are pruned by end date Save samples with enddate after HKHealthStore s earliestpermittedsampledate Time iphone Apple Watch

172 Handling Data NEW Flow between iphone and Apple Watch Recent samples from iphone are periodically ios 9.3 synced to Apple Watch Samples on Apple Watch are pruned by end date Save samples with enddate after HKHealthStore s earliestpermittedsampledate Save samples on iphone or Apple Watch, not both Time iphone Apple Watch

173 Wheelchair Support

174

175 Wheelchair Support NEW

176 Wheelchair Support NEW New characteristic data type

177 Wheelchair Support NEW New characteristic data type New quantity types

178 Wheelchair Support NEW New characteristic data type New quantity types New workout activity types

179 Wheelchair Support NEW Details

180 Wheelchair Support NEW Details Steps Push count

181 Wheelchair Support NEW Details Steps Push count Stand hours Roll hours

182 Wheelchair Support NEW Details Steps Push count Stand hours Roll hours Wheelchair distance only recorded during workouts

183 Wheelchair Support NEW Details Steps Push count Stand hours Roll hours Wheelchair distance only recorded during workouts Wheelchair use status can change over time

184 Summary

185 Summary Pay attention to the authorization user experience

186 Summary Pay attention to the authorization user experience Incorporate Apple s activity rings into your app

187 Summary Pay attention to the authorization user experience Incorporate Apple s activity rings into your app Take care when handling and synchronizing HealthKit data

188 Summary Pay attention to the authorization user experience Incorporate Apple s activity rings into your app Take care when handling and synchronizing HealthKit data Make your experience accessible to wheelchair users

189 More Information

190 Related Sessions Health and Fitness with Core Motion Nob Hill Thursday 3:00PM What s New in ResearchKit Nob Hill Friday 10:00AM Building Great Workout Apps Pacific Heights Friday 11:00AM Getting Started with CareKit Pacific Heights Friday 3:00PM Introducing HealthKit WWDC 2014 Designing Accessories for ios and OS X WWDC 2014 What s New in HealthKit WWDC 2015

191 Labs HealthKit Lab HealthKit Lab Frameworks Lab A Frameworks Lab A Wednesday 10:00AM Thursday 9:00AM ResearchKit and CareKit Lab Fort Mason Friday 10:30AM Core Motion Lab Frameworks Lab D Friday 12:30PM ResearchKit and CareKit Lab Fort Mason Friday 3:30PM

192

Using and Extending the Xcode Source Editor

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

More information

Enhancing your apps for the next dimension of touch

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

More information

New Ways to Work with Workouts

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

More information

Monetize and Promote Your App with iad

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

More information

What s New in Xcode App Signing

What s New in Xcode App Signing Developer Tools #WWDC16 What s New in Xcode App Signing Developing and distributing Session 401 Joshua Pennington Tools Engineering Manager Itai Rom Tools Engineer 2016 Apple Inc. All rights reserved.

More information

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

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

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

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

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

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

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

Extending Your Apps with SiriKit

Extending Your Apps with SiriKit App Frameworks #WWDC16 Extending Your Apps with SiriKit Session 225 Vineet Khosla SiriKit Engineering Diana Huang SiriKit Engineering Scott Andrus SiriKit Engineering 2016 Apple Inc. All rights reserved.

More information

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

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

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

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

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

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

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

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

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

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

Designing Great Apple Watch Experiences

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

More information

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

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

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

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

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

Advances in AVFoundation Playback

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

More information

App Extension Best Practices

App Extension Best Practices App Frameworks #WWDC15 App Extension Best Practices Session 224 Sophia Teutschler UIKit Engineer Ian Baird CoreOS Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

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 Audio Apps for watchos

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

More information

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

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

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

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

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

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

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

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

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

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

Accessibility on OS X

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

More information

Introducing the Modern WebKit API

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

More information

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

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

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

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

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

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

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

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

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

lecture 10 UI/UX and Programmatic Design cs : spring 2018

lecture 10 UI/UX and Programmatic Design cs : spring 2018 lecture 10 UI/UX and Programmatic Design cs198-001 : spring 2018 1 Announcements custom app progress form due before lab (~1 minute) will be released after lecture only 2 labs left (both very important)

More information

Networking with NSURLSession

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

More information

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

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

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

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

What s New in ARKit 2

What s New in ARKit 2 Session #WWDC18 What s New in ARKit 2 602 Arsalan Malik, ARKit Engineer Reinhard Klapfer, ARKit Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

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

Validating HTTP Live Streams

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

More information

Advanced Debugging and the Address Sanitizer

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

More information

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

Writing Great Alerts. Design #WWDC17. Natalie Calvert, Designer

Writing Great Alerts. Design #WWDC17. Natalie Calvert, Designer Session Design #WWDC17 Writing Great Alerts 813 Natalie Calvert, Designer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. When

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

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

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

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

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

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

Creating Content with iad JS

Creating Content with iad JS Creating Content with iad JS Part 2 The iad JS Framework Antoine Quint iad JS Software Engineer ios Apps and Frameworks 2 Agenda Motivations and Features of iad JS Core JavaScript Enhancements Working

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

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

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 is New in MyChart? My Medical Record Health Preferences Settings Appointments and Visits Visits Schedule an Appointment Update Information

What is New in MyChart? My Medical Record Health Preferences Settings Appointments and Visits Visits Schedule an Appointment Update Information What is New in MyChart? On August 26th, we will be upgrading and changing the look and feel to our MyChart patient portal site. We would like to make you aware of a few differences that you will see, when

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

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

Creating Extensions for ios and OS X, Part Two

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

More information

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

Personal Information. New Profile Icon

Personal Information. New Profile Icon What is New in MyChart? On December 8th, we will be upgrading our MyChart patient portal site. We would like to make you aware of a few differences that you will see, when you sign into your MyChart account.

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

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

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

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

VMware AirWatch SDK for ios (Swift) v17.5. Technical Implementation Guide Empowering your enterprise applications with MDM capabilities

VMware AirWatch SDK for ios (Swift) v17.5. Technical Implementation Guide Empowering your enterprise applications with MDM capabilities VMware AirWatch SDK for ios (Swift) Technical Implementation Guide Empowering your enterprise applications with MDM capabilities VMware AirWatch SDK for ios (Swift) v17.5 Have documentation feedback? Submit

More information

Audio Unit Extensions

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

More information

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

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

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

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

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

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

More information