Get and Set info in Medical ID using Healthkit?

北城余情 提交于 2019-12-20 04:25:22

问题


I am trying to get the information from Medical ID for example Conditions, Medical notes, Allergies & reactions, all that kind of info.

I'm using Swift and Health Kit. For the moment the only info that I can get is dateOfBirth, biologicalSex, and bloodType.

import UIKit
import HealthKit

class ViewController: UIViewController {

let healthKitStore: HKHealthStore = HKHealthStore()

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.

    let healthStore: HKHealthStore? = {
        if HKHealthStore.isHealthDataAvailable() {
            return HKHealthStore()
        } else {
            return nil
        }
    }()


    //MARK: Data to write
    let bodyMass = HKObjectType.quantityTypeForIdentifier(HKQuantityTypeIdentifierBodyMassIndex)
    let run = HKObjectType.quantityTypeForIdentifier(HKQuantityTypeIdentifierDistanceWalkingRunning)

    let dataTypesToWrite = NSSet(objects:bodyMass!, run!)

    //MARK: Data to read
    let dateOfBirthCharacteristic = HKCharacteristicType.characteristicTypeForIdentifier(
        HKCharacteristicTypeIdentifierDateOfBirth)
    let biologicalSexCharacteristic = HKCharacteristicType.characteristicTypeForIdentifier(
        HKCharacteristicTypeIdentifierBiologicalSex)
    let bloodTypeCharacteristic = HKCharacteristicType.characteristicTypeForIdentifier(
        HKCharacteristicTypeIdentifierBloodType)

    let dataTypesToRead = NSSet(objects:dateOfBirthCharacteristic!,biologicalSexCharacteristic!,bloodTypeCharacteristic!)


    healthStore?.requestAuthorizationToShareTypes(dataTypesToWrite as? Set<HKSampleType>, readTypes: dataTypesToRead as? Set<HKObjectType>) { (success, error) -> Void in
        if success {
            print("success")
        }else{
            print(error?.description)
        }
    }

    var dateOfBirth: String?{
        if let dateOfBirth = try? healthStore?.dateOfBirth(){
            let dateFormater = NSDateFormatter()
            dateFormater.dateStyle = .ShortStyle
            return dateFormater.stringFromDate(dateOfBirth!)
        }
        return nil
    }

    var biologicalSex: String? {
        if let biologicalSex =  try? healthStore?.biologicalSex(){
            switch biologicalSex!.biologicalSex {
            case .Female:
                return "Female"
            case .Male:
                return "Male"
            case .NotSet:
                return nil
            default:
                return nil
            }
        }
        return nil
    }


    var bloodType: String? {
        if let bloodType = try? healthStore?.bloodType(){
            switch bloodType!.bloodType {
            case .APositive:
                return "A+"
            case .ANegative:
                return "A-"
            case .BPositive:
                return "B+"
            case .BNegative:
                return "B-"
            case .ABPositive:
                return "AB+"
            case .ABNegative:
                return "AB-"
            case .OPositive:
                return "O+"
            case .ONegative:
                return "O-"
            case .NotSet:
                return nil
            }
        }
        return nil
    }

    print(dateOfBirth)
    print(biologicalSex)
    print (bloodType)
    saveDistance(20, date: NSDate())
}

func saveDistance(distanceRecorded: Double, date: NSDate ) {

    // Set the quantity type to the running/walking distance.
    let distanceType = HKQuantityType.quantityTypeForIdentifier(HKQuantityTypeIdentifierDistanceWalkingRunning)

    // Set the unit of measurement to miles.
    let distanceQuantity = HKQuantity(unit: HKUnit.mileUnit(), doubleValue: distanceRecorded)

    // Set the official Quantity Sample.
    let distance = HKQuantitySample(type: distanceType!, quantity: distanceQuantity, startDate: date, endDate: date)

    // Save the distance quantity sample to the HealthKit Store.
    healthKitStore.saveObject(distance, withCompletion: { (success, error) -> Void in
        if( error != nil ) {
            print(error)
        } else {
            print("The distance has been recorded! Better go check!")
        }
    })
}


override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}
}

回答1:


There is no API on iOS for retrieving or modifying the user's Medical ID.



来源:https://stackoverflow.com/questions/39358190/get-and-set-info-in-medical-id-using-healthkit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!