取得データの合計値を得る

Preview healthkit014

Swift3.0

Info.plistNSHealthUpdateUsageDescriptionNSHealthShareUsageDescriptionを追加します

※ Capabilities -> HealthKit をONにしてください。

Preview healthkit001_3

//
//  ViewController.swift
//  healthkit014
//
//  Copyright © 2016年 FaBo, Inc. All rights reserved.
//
import UIKit
import HealthKit

class ViewController: UIViewController, UITextFieldDelegate{
    // 各インスタンスの生成.
    var myHealthStore = HKHealthStore()
    var myReadCaffeineField: UITextField!
    var myWriteCaffeineField: UITextField!
    var myReadButton: UIButton!
    var myWriteButton: UIButton!

    override func viewDidLoad() {
        super.viewDidLoad()

        // 入力フィールドを設置.
        myWriteCaffeineField = UITextField(frame: CGRect(x: 0, y: 0, width: 300, height: 30))
        myWriteCaffeineField.placeholder = "カフェインの摂取量を入力してください"
        myWriteCaffeineField.delegate = self
        myWriteCaffeineField.borderStyle = UITextBorderStyle.roundedRect
        myWriteCaffeineField.layer.position = CGPoint(x: self.view.bounds.width/2, y: 200);
        self.view.addSubview(myWriteCaffeineField)

        // 書き込みボタンを設置.
        myWriteButton = UIButton()
        myWriteButton.frame = CGRect(x: 0, y: 0, width: 300, height: 40)
        myWriteButton.backgroundColor = UIColor.blue
        myWriteButton.layer.masksToBounds = true
        myWriteButton.setTitle("カフェインの摂取量の書き込み", for: UIControlState.normal)
        myWriteButton.setTitleColor(UIColor.white, for: UIControlState.normal)
        myWriteButton.setTitleColor(UIColor.black, for: UIControlState.highlighted)
        myWriteButton.layer.cornerRadius = 20.0
        myWriteButton.layer.position = CGPoint(x: self.view.frame.width/2, y:250)
        myWriteButton.tag = 2
        myWriteButton.addTarget(self, action: #selector(ViewController.onClickMyButton(sender:)), for: .touchUpInside)
        self.view.addSubview(myWriteButton)

        // 表示フィールドを設置.
        myReadCaffeineField = UITextField(frame: CGRect(x: 0, y: 0, width: 300, height: 30))
        myReadCaffeineField.placeholder = "前回登録のカフェインの摂取量"
        myReadCaffeineField.isEnabled = false
        myReadCaffeineField.delegate = self
        myReadCaffeineField.borderStyle = UITextBorderStyle.roundedRect
        myReadCaffeineField.layer.position = CGPoint(x:self.view.bounds.width/2,y:350);
        myReadCaffeineField.isEnabled = false
        self.view.addSubview(myReadCaffeineField)

        // 読み込みボタンを設置.
        myReadButton = UIButton()
        myReadButton.frame = CGRect(x: 0, y: 0, width: 300, height: 40)
        myReadButton.backgroundColor = UIColor.red
        myReadButton.layer.masksToBounds = true
        myReadButton.setTitle("カフェインの摂取量の読み込み", for: UIControlState.normal)
        myReadButton.setTitleColor(UIColor.white, for: UIControlState.normal)
        myReadButton.setTitleColor(UIColor.black, for: UIControlState.highlighted)
        myReadButton.layer.cornerRadius = 20.0
        myReadButton.layer.position = CGPoint(x: self.view.frame.width/2, y:400)
        myReadButton.tag = 1
        myReadButton.addTarget(self, action: #selector(ViewController.onClickMyButton(sender:)), for: .touchUpInside)
        self.view.addSubview(myReadButton)
    }

    override func viewDidAppear(_ animated: Bool) {
        super.viewDidAppear(animated)
        // HealthStoreへの許可を申請.
        requestAuthorization()
    }

    /*
     ボタンイベント.
     */
    func onClickMyButton(sender: UIButton){
        if(sender.tag == 1){
            readData()
        } else if(sender.tag == 2){
            if let val = Double(myWriteCaffeineField.text!) {
                writeData(caffeine: val)
            }
        }
    }

    /*
     Healthデータへのアクセスを申請.
     */
    private func requestAuthorization(){
        // 読み込みを許可する型.
        let types = Set(arrayLiteral:
            HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.dietaryCaffeine)!
        )
        // HealthStoreへのアクセス承認をおこなう.
        myHealthStore.requestAuthorization(toShare: types, read: types, completion: { (success, error) in
            if let e = error {
                print("Error: \(e.localizedDescription)")
            }
            print(success ? "Success" : "Failure")
        })
    }

    /*
     データの読み出し.
     */
    private func readData() {
        // 取得したいデータのタイプを生成.
        let typeOfCaffeine = HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.dietaryCaffeine)
        let calendar = Calendar.init(identifier: Calendar.Identifier.gregorian)
        let now = Date()
        let startDate = calendar.startOfDay(for: now)
        let endDate = calendar.date(byAdding: Calendar.Component.day, value: 1, to: startDate)
        let predicate = HKQuery.predicateForSamples(withStart: startDate, end: endDate, options: [])

        // Caffeine量の合計値を読み出すためのオプション.
        // nutritionは平均、最大、最小の値は取れない.
        let statsOptions = HKStatisticsOptions.cumulativeSum

        let staticsQuery = HKStatisticsQuery(quantityType: typeOfCaffeine!, quantitySamplePredicate: predicate, options: statsOptions) { (query, result, error) in
            if let e = error {
                print("Error: \(e.localizedDescription)")
                return
            }
            guard let sum = result?.sumQuantity() else {
                print("Error")
                self.myReadCaffeineField.text = "Data is not found"
                return
            }
            // 取得したサンプルを単位に合わせる.
            DispatchQueue.main.async {
                self.myReadCaffeineField.text = "\(sum)"
            }
        }
        // queryを発行.
        self.myHealthStore.execute(staticsQuery)
    }

    /*
     データの書き込み.
     */
    private func writeData(caffeine: Double){
        // 入力された値をmgとして扱う.
        let mg = HKUnit.gramUnit(with: .milli)
        // Caffeineのタイプ.
        let typeOfCaffeine = HKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier.dietaryCaffeine)
        // Caffeineデータを作成.
        let myCaffeine = HKQuantity(unit: mg, doubleValue: caffeine)
        // StoreKit保存用データを作成.
        let myCaffeineData = HKQuantitySample(type: typeOfCaffeine!, quantity: myCaffeine, start: Date(), end: Date())
        // HealthStoreにデータを保存.
        myHealthStore.save(myCaffeineData, withCompletion: {success, error in
            if let e = error {
                print("Error: \(e.localizedDescription)")
                return
            }
            print(success ? "Success" : "Failure")
        })
    }
}

Swift2.3

//
//  ViewController.swift
//  healthkit014
//
//  Copyright © 2016年 FaBo, Inc. All rights reserved.
//
import UIKit
import HealthKit

class ViewController: UIViewController, UITextFieldDelegate {
    // 各インスタンスの生成.
    var myHealthStore = HKHealthStore()
    var myReadCaffeineField: UITextField!
    var myWriteCaffeineField: UITextField!
    var myReadButton: UIButton!
    var myWriteButton: UIButton!

    override func viewDidLoad() {
        super.viewDidLoad()

        // 入力フィールドを設置.
        myWriteCaffeineField = UITextField(frame: CGRectMake(0,0,300,30))
        myWriteCaffeineField.placeholder = "カフェインの摂取量を入力してください"
        myWriteCaffeineField.delegate = self
        myWriteCaffeineField.borderStyle = UITextBorderStyle.RoundedRect
        myWriteCaffeineField.layer.position = CGPoint(x:self.view.bounds.width/2,y:200);
        self.view.addSubview(myWriteCaffeineField)

        // 書き込みボタンを設置.
        myWriteButton = UIButton()
        myWriteButton.frame = CGRectMake(0,0,300,40)
        myWriteButton.backgroundColor = UIColor.blueColor();
        myWriteButton.layer.masksToBounds = true
        myWriteButton.setTitle("カフェインの摂取量の書き込み", forState: UIControlState.Normal)
        myWriteButton.setTitleColor(UIColor.whiteColor(), forState: UIControlState.Normal)
        myWriteButton.setTitleColor(UIColor.blackColor(), forState: UIControlState.Highlighted)
        myWriteButton.layer.cornerRadius = 20.0
        myWriteButton.layer.position = CGPoint(x: self.view.frame.width/2, y:250)
        myWriteButton.tag = 2
        myWriteButton.addTarget(self, action: #selector(ViewController.onClickMyButton(_:)), forControlEvents: .TouchUpInside)
        self.view.addSubview(myWriteButton)


        // 表示フィールドを設置.
        myReadCaffeineField = UITextField(frame: CGRectMake(0,0,300,30))
        myReadCaffeineField.placeholder = "前回登録のカフェインの摂取量"
        myReadCaffeineField.enabled = false
        myReadCaffeineField.delegate = self
        myReadCaffeineField.borderStyle = UITextBorderStyle.RoundedRect
        myReadCaffeineField.layer.position = CGPoint(x:self.view.bounds.width/2,y:350);
        myReadCaffeineField.enabled = false
        self.view.addSubview(myReadCaffeineField)

        // 読み込みボタンを設置.
        myReadButton = UIButton()
        myReadButton.frame = CGRectMake(0,0,300,40)
        myReadButton.backgroundColor = UIColor.redColor();
        myReadButton.layer.masksToBounds = true
        myReadButton.setTitle("カフェインの摂取量の読み込み", forState: UIControlState.Normal)
        myReadButton.setTitleColor(UIColor.whiteColor(), forState: UIControlState.Normal)
        myReadButton.setTitleColor(UIColor.blackColor(), forState: UIControlState.Highlighted)
        myReadButton.layer.cornerRadius = 20.0
        myReadButton.layer.position = CGPoint(x: self.view.frame.width/2, y:400)
        myReadButton.tag = 1
        myReadButton.addTarget(self, action: #selector(ViewController.onClickMyButton(_:)), forControlEvents: .TouchUpInside)
        self.view.addSubview(myReadButton)
    }

    override func viewDidAppear(animated: Bool) {
        super.viewDidAppear(animated)
        // HealthStoreへの許可を申請.
        requestAuthorization()
    }

    /*
     ボタンイベント.
     */
    func onClickMyButton(sender: UIButton){
        if(sender.tag == 1){
            readData()
        } else if(sender.tag == 2){
            if let val = Double(myWriteCaffeineField.text!) {
                writeData(val)
            }
        }
    }

    /*
     Healthデータへのアクセスを申請.
     */
    private func requestAuthorization(){
        // 読み込みを許可する型.
        let types = Set(arrayLiteral:
            HKObjectType.quantityTypeForIdentifier(HKQuantityTypeIdentifierDietaryCaffeine)!
        )

        // HealthStoreへのアクセス承認をおこなう.
        myHealthStore.requestAuthorizationToShareTypes(types, readTypes: types, completion: { (success, error) in
            if let e = error {
                print("Error: \(e.localizedDescription)")
            }
            print(success ? "Success" : "Failure")
        })
    }

    /*
     データの読み出し.
     */
    private func readData() {
        // 取得したいデータのタイプを生成.
        let typeOfCaffeine = HKObjectType.quantityTypeForIdentifier(HKQuantityTypeIdentifierDietaryCaffeine)
        let calendar = NSCalendar.init(identifier: NSCalendarIdentifierGregorian)
        let now = NSDate()
        let startDate = calendar!.startOfDayForDate(now)
        let endDate = calendar!.dateByAddingUnit(NSCalendarUnit.Day, value: 1, toDate: startDate, options: NSCalendarOptions.MatchFirst)
        let predicate = HKQuery.predicateForSamplesWithStartDate(startDate, endDate: endDate, options: HKQueryOptions.None)

        // Caffeine量の合計値を読み出すためのオプション.
        // nutritionは平均、最大、最小の値は取れない.
        let statsOptions = HKStatisticsOptions.CumulativeSum

        let staticsQuery = HKStatisticsQuery(quantityType: typeOfCaffeine!, quantitySamplePredicate: predicate, options: statsOptions) { (query, result, error) in
            if let e = error {
                print("Error: \(e.localizedDescription)")
                return
            }
            guard let sum = result?.sumQuantity() else {
                print("Error")
                self.myReadCaffeineField.text = "Data is not found"
                return
            }
            // 取得したサンプルを単位に合わせる.
            dispatch_async(dispatch_get_main_queue(),{
                self.myReadCaffeineField.text = "\(sum)"
            })
        }
        // queryを発行.
        self.myHealthStore.executeQuery(staticsQuery)
    }

    /*
     データの書き込み.
     */
    private func writeData(caffeine: Double){
        // 入力された値をmgとして扱う.
        let mg = HKUnit.gramUnitWithMetricPrefix(.Milli)
        // Caffeineのタイプ.
        let typeOfCaffeine = HKObjectType.quantityTypeForIdentifier(HKQuantityTypeIdentifierDietaryCaffeine)
        // Caffeineデータを作成.
        let myCaffeine = HKQuantity(unit: mg, doubleValue: caffeine)
        // StoreKit保存用データを作成.
        let myCaffeineData = HKQuantitySample(type: typeOfCaffeine!, quantity: myCaffeine, startDate: NSDate(), endDate: NSDate())
        // HealthStoreにデータを保存.
        myHealthStore.saveObject(myCaffeineData, withCompletion: {success, error in
            if let e = error {
                print("Error: \(e.localizedDescription)")
                return
            }
            print(success ? "Success" : "Failure")
        })
    }
}

2.xと3.xの差分

  • HealthKitの定数が列挙体に変更
    • 例 : HKCharacteristicTypeIdentifierDateOfBirthHKCharacteristicTypeIdentifier.dateOfBirth
  • HKHealthStore.requestAuthorizationToShareTypes(Set<HKSampleType>?, readTypes: Set<HKObjectType>?, completion: (Bool, NSError?) -> Void)からHKHealthStore.requestAuthorization(toShare: Set<HKSampleType>?, read: Set<HKObjectType>?, completion: (Bool, Error?) -> Void)に変更
  • HKObjectType.quantityTypeForIdentifier(String)からHKObjectType.quantityType(forIdentifier: HKQuantityTypeIdentifier)に変更
  • NSDateからDateに変更
  • dispatch_async(dispatch_queue_t, dispatch_block_t)からDispatchQueue.main.async(execute: () -> Void)に変更
  • HKHealthStore.executeQuery(HKQuery)からHKHealthStore.execute(HKQuery)に変更

References

results matching ""

    No results matching ""