Skip to main content

How To Save And Get Data from HealthKit in Swift 3.0 ?

Save And Get Data from HealthKit

Apple providing the healthKit for storing,  managing , reading and sharing health data. HealthKit enables developer to read and write health data to a database managed by operating system. 



This tutorial, We are providing the details of HealthKit configuration , Authorisation , Save health data and Write health data. 

Configuration : 

Step  1 :  Create a project with Bundle Identifier com.iosDevCenter.Health. Add this bundle identifier in the developer account and enable the healthKit for the AppId. 


Step  2 :  Go to the Xcode, Select the project and go to the Capability section enable the healthKit. 


Step  3:  You have also permission for HealthKit Share and Update data, So have to adding permission in info.plist file. for more information : info.Plist 



Authorisation and Code :

To read or Write data on healthKit have to take permission for it. Here we take permission to read data Height and bodyMass, and Write data permission activeEnergyBurned, Height , DietaryProtein , DietaryFatTotal.



Step 1: Import the healthKit in the file.
1import HealthKit
Step 2 : Create the instance of the healthStore,
1let healthkitStore = HKHealthStore()
Step 3 : Create the function to read and write data from healthKit and call the function in ViewDidLoad.
12345678910111213141516171819202122232425262728293031func getHealthKitPermission() {
    let healthkitTypesToRead = NSSet(array: [
         HKObjectType.categoryType(forIdentifier: HKCategoryTypeIdentifier.sexualActivity) ?? "",
         HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.height) ?? "",
         HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.bodyMass) ?? "",
        ])

    let healthkitTypesToWrite = NSSet(array: [
        // Here we are only requesting access to write for the amount of Energy Burned.
        HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.activeEnergyBurned) ?? "",
        HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.height) ?? "",
        HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.dietaryProtein) ?? "",
        HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.dietaryCarbohydrates) ?? "",
        HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.dietaryFatTotal) ?? "",
        ])

    healthkitStore.requestAuthorization(toShare: healthkitTypesToWrite as? Set, read: healthkitTypesToRead as? Set) { (success, error) in


        if success {
            print("Permission accept.")
            self.saveProtin()
            self.saveHeight()
            self.readHeight()
            self.readWeight()
        } else {
            if error != nil {
                print(error ?? "")
            }
            print("Permission denied.")
        }
    }
}
Save Health Data :

Save Protein : 
1234567891011func saveProtin(){
    if let type = HKSampleType.quantityType(forIdentifier: HKQuantityTypeIdentifier.dietaryProtein) {
        let date = Date()
        let quantity = HKQuantity(unit: HKUnit.gram(), doubleValue: 50.0)
        let sample = HKQuantitySample(type: type, quantity: quantity, start: date, end: date)
        self.healthkitStore.save(sample, withCompletion: { (success, error) in

            print("Saved \(success), error \(error)")
        })
    }

}

Save Height :
12345678910func saveHeight() {
    if let type = HKSampleType.quantityType(forIdentifier: HKQuantityTypeIdentifier.height) {
        let date = Date()
        let quantity = HKQuantity(unit: HKUnit.inch(), doubleValue: 100.0)
        let sample = HKQuantitySample(type: type, quantity: quantity, start: date, end: date)
        self.healthkitStore.save(sample, withCompletion: { (success, error) in
            print("Saved \(success), error \(error)")
        })
    }
}
Read Health Data :

Read Height Data :
1234567891011func readHeight() {


    let heightType = HKSampleType.quantityType(forIdentifier: HKQuantityTypeIdentifier.height)!
    let query = HKSampleQuery(sampleType: heightType, predicate: nil, limit: 1, sortDescriptors: nil) { (query, results, error) in
        if let result = results?.first as? HKQuantitySample{
            print("Height => \(result.quantity)")
        }else{
            print("OOPS didnt get height \nResults => \(results), error => \(error)")
        }
    }
    self.healthkitStore.execute(query)
}
 Read Weight Data :
1234567891011func readWeight() {
    let bodyMass = HKSampleType.quantityType(forIdentifier: HKQuantityTypeIdentifier.bodyMass)!
    let query = HKSampleQuery(sampleType: bodyMass, predicate: nil, limit: 1, sortDescriptors: nil) { (query, results, error) in
        if let result = results?.first as? HKQuantitySample{
            print("bodyMass => \(result.quantity)")
        }else{
            print("OOPS didnt get height \nResults => \(results), error => \(error)")
        }
    }
    self.healthkitStore.execute(query)
}
Demo HealthKit : 

Thanks.

Comments

Popular Posts

16 AWS Gotchas

16 AWS Gotchas In January I launched the MVP for my own startup,  Proximistyle , which helps you find what you’re looking for nearby. On advice from friends and industry contacts I chose AWS as my cloud provider. Having never had to set up my own cloud infrastructure before, the learning curve to get from no experience to a stable VPC system I was happy with was significantly steeper than expected, and had its fair share of surprises. #1 Take advantage of the free resources offered AWS offers a free tier for new accounts. If you have recently bought a domain and set up a company you qualify for the free tier for a year. Additionally, if you are a bootstrapped startup you can apply for  the Startup Builders package  and get $1000 in AWS credits. After doing the above, you’re now ready to get started with setting up the AWS infrastructure for your startup. #2 Set up billing budgets and alerting The very first thing you should do after setting up billing, is enabling a budge...

Ultimate Folder Structure For Your React Native Project

  Ultimate Folder Structure For Your React Native Project React native project structure React Native is a flexible framework, giving developers the freedom to choose their code structure. However, this can be a double-edged sword for beginners. Though it offers ease of coding, it can soon become challenging to manage as your project expands. Thus, a structured folder system can be beneficial in many ways like better organization, simplified module management, adhering to coding practices, and giving a professional touch to your project. This write-up discusses a version of a folder arrangement that I employ in my React Native projects. This structure is based on best practices and can be modified to suit the specific needs of your project. Before we get into the project structure let’s give credit to @sanjay who has the original idea of the structure but I modify his version of the code, to make it better. Base library axios  — For network calling. react-navigation ...

Master Map & Filter, Javascript’s Most Powerful Array Functions

Master Map & Filter, Javascript’s Most Powerful Array Functions Learn how Array.map and Array.filter work by writing them yourself This article is for those who have written a  for  loop before, but don’t quite understand how  Array.map  or  Array.filter  work. You should also be able to write a basic function. By the end of this, you’ll have a complete understanding of both functions, because you’ll have seen how they’re written. Array.map Array.map  is meant to transform one array into another by performing some operation on each of its values. The original array is left untouched and the function returns a new, transformed array. For example, say we have an array of numbers and we want to  multiply each number by three . We also don’t want to change the original array. To do this without  Array.map , we can use a standard for-loop. for-loop var originalArr = [1, 2, 3, 4, 5]; var newArr = []; for(var i = 0; i < originalArr.length; i+...