◎わからないこと
apple watch で心拍数を図るアプリを作りたいので下記のようにコードを記述しましたが、libc++abi.dylib: terminating with uncaught exception of type NSException
のエラーが出てします。
修正したいがどうすればよいか分からない。
◎試したこと
1,Interface.storyboardで@IBOutletとのリンクを切って再接続したが状況は変わらない。重複もない。
2,ブレークポイントで確認したら下記の箇所が怪しい。
// アクセス許可をユーザに求める let dataTypes = Set([self.heartRateType]) self.healthStore.requestAuthorization(toShare: nil, read: dataTypes) { (success, error) -> Void in guard success else { self.label.setText("not allowed") return } }
◎エラー文
libc++abi.dylib: terminating with uncaught exception of type NSException (lldb)
◎すべてのコード
import WatchKit import Foundation import HealthKit import WatchConnectivity class InterfaceController: WKInterfaceController { // @IBOutlet var label: WKInterfaceLabel! // @IBOutlet var messageLabel: WKInterfaceLabel! // @IBOutlet var button: WKInterfaceButton! // @IBOutlet var secondbutton: WKInterfaceButton! @IBOutlet weak var label: WKInterfaceLabel! @IBOutlet weak var messageLabel: WKInterfaceLabel! @IBOutlet weak var button: WKInterfaceButton! @IBOutlet weak var secondbutton: WKInterfaceButton! // HealthKitで扱うデータを管理するクラス(データの読み書きにはユーザの許可が必要) let healthStore = HKHealthStore() // 取得したいデータの識別子、今回は心拍数 let heartRateType = HKQuantityType.quantityType(forIdentifier: HKQuantityTypeIdentifier.heartRate)! // 取得したデータの単位、今回はBPM let heartRateUnit = HKUnit(from: "count/min") // HealthStoreへのクエリ //HealthKitのすべてのクエリクラスの抽象クラス var heartRateQuery: HKQuery? //iphoneと通信 var wcSession = WCSession.default override func awake(withContext context: Any?) { super.awake(withContext: context) // check supported if WCSession.isSupported() { // get default session wcSession = WCSession.default // set delegate wcSession.delegate = self as? WCSessionDelegate // activate session wcSession.activate() } else { print("Not support WCSession") } // iPhoneとAppleWatchの連携チェック if WCSession.isSupported() { wcSession.delegate = self as? WCSessionDelegate wcSession.activate() } // Configure interface objects here. } override func willActivate() { // This method is called when watch view controller is about to be visible to user super.willActivate() // HealthKitがデバイス上で利用できるか確認 guard HKHealthStore.isHealthDataAvailable() else { self.label.setText("not available") return } // アクセス許可をユーザに求める let dataTypes = Set([self.heartRateType]) self.healthStore.requestAuthorization(toShare: nil, read: dataTypes) { (success, error) -> Void in guard success else { self.label.setText("not allowed") return } } } // healthStoreへのクエリ生成 private func createStreamingQuery() -> HKQuery { let predicate = HKQuery.predicateForSamples(withStart: NSDate() as Date, end: nil, options: []) // HKAnchoredObjectQueryだと他のアプリケーションによる更新を検知 let query = HKAnchoredObjectQuery(type: heartRateType, predicate: predicate, anchor: nil, limit: Int(HKObjectQueryNoLimit)) { (query, samples, deletedObjects, anchor, error) -> Void in self.addSamples(samples: samples) } query.updateHandler = { (query, samples, deletedObjects, anchor, error) -> Void in self.addSamples(samples: samples) } return query } // 取得したデータを表示,保存 private func addSamples(samples: [HKSample]?){ guard let samples = samples as? [HKQuantitySample] else { return } guard let quantity = samples.last?.quantity else { return } let hartrate = (quantity.doubleValue(for: heartRateUnit)) label.setText("(hartrate)") print(hartrate) let file_name = "test_HR.txt" let text = "(hartrate)" let path = NSHomeDirectory() + "/Documents/(file_name)" print("(path)") do{ try text.write(toFile: path, atomically: true, encoding: String.Encoding.utf8) print("書き込み成功") }catch{ print("失敗") //print(message) } } @IBAction func buttonTapped() { if self.heartRateQuery == nil { // start // クエリ生成 self.heartRateQuery = self.createStreamingQuery() // クエリ実行 self.healthStore.execute(self.heartRateQuery!) self.button.setTitle("Stop") self.messageLabel.setText("Measuring...") } else { // end self.healthStore.stop(self.heartRateQuery!) self.heartRateQuery = nil self.button.setTitle("Start") self.messageLabel.setText("") } } override func didDeactivate() { // This method is called when watch view controller is no longer visible super.didDeactivate() } }
reasonの箇所
2019-09-30 16:54:40.412248+0900 RepMonitor WatchKit Extension[952:12172] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'The string "Save the data" is an invalid value for NSHealthShareUsageDescription' 28 UIKitCore 0x5e24e466 -[UIApplication _stopDeactivatingForReason:] + 1106 32 UIKitCore 0x5da30b37 -[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] + 468 (lldb)
回答1件
あなたの回答
tips
プレビュー