- 완주한 세트만 애플 건강에 '기타' 운동으로 자동 기록 (중단=미기록 규칙 일관) - 폰=사후 HKWorkoutBuilder, 워치=라이브 HKWorkoutSession(심박 포함·손목 내림 유지 겸용, 실패 시 확장 런타임 세션 폴백) - 운동 강도: 설정 → 애플 건강 → 자동 기록(기본 2·쉬움, 안 함 가능) — relateWorkoutEffortSample, 워치 11+/iOS 18, 워치 10은 운동만 기록 - 쓰기 전용 권한(첫 시작 때 요청·거부 시 조용히 스킵), 건강 문구 3언어, 새 UI 문자열 11키 번역 - WorkoutConfig 전 필드 decodeIfPresent 디코더 (필드 추가에도 기존 설정 보존) - 검증: Debug·Release·워치 빌드 그린, 권한 시트·설정 ko/ja 화면 QA, 카탈로그 missing·stale 0 (건강 실제 저장은 권한 시트 조작 불가로 실기기 확인 필요) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01UPmp29DQHY6Ahfss5SRopT
51 lines
2.2 KiB
Swift
51 lines
2.2 KiB
Swift
//
|
|
// HealthKitCalls.swift
|
|
// Keging
|
|
//
|
|
// HealthKit completion API의 async 래퍼 — iOS(사후 빌더)·워치(라이브 빌더) 공용
|
|
//
|
|
|
|
import HealthKit
|
|
|
|
nonisolated enum HealthKitCalls {
|
|
static func beginCollection(_ builder: HKWorkoutBuilder, at date: Date) async throws {
|
|
try await withCheckedThrowingContinuation { (continuation: CheckedContinuation<Void, Error>) in
|
|
builder.beginCollection(withStart: date) { _, error in
|
|
if let error { continuation.resume(throwing: error) } else { continuation.resume() }
|
|
}
|
|
}
|
|
}
|
|
|
|
static func endCollection(_ builder: HKWorkoutBuilder, at date: Date) async throws {
|
|
try await withCheckedThrowingContinuation { (continuation: CheckedContinuation<Void, Error>) in
|
|
builder.endCollection(withEnd: date) { _, error in
|
|
if let error { continuation.resume(throwing: error) } else { continuation.resume() }
|
|
}
|
|
}
|
|
}
|
|
|
|
static func finishWorkout(_ builder: HKWorkoutBuilder) async throws -> HKWorkout? {
|
|
try await withCheckedThrowingContinuation { (continuation: CheckedContinuation<HKWorkout?, Error>) in
|
|
builder.finishWorkout { workout, error in
|
|
if let error { continuation.resume(throwing: error) } else { continuation.resume(returning: workout) }
|
|
}
|
|
}
|
|
}
|
|
|
|
/// 운동 강도(1~10) 샘플을 운동에 연결 — 애플 운동 앱의 강도 기록과 같은 데이터
|
|
@available(iOS 18.0, watchOS 11.0, *)
|
|
static func relateEffort(store: HKHealthStore, workout: HKWorkout, score: Int) async throws {
|
|
let sample = HKQuantitySample(
|
|
type: HKQuantityType(.workoutEffortScore),
|
|
quantity: HKQuantity(unit: .appleEffortScore(), doubleValue: Double(min(max(score, 1), 10))),
|
|
start: workout.startDate,
|
|
end: workout.endDate
|
|
)
|
|
try await withCheckedThrowingContinuation { (continuation: CheckedContinuation<Void, Error>) in
|
|
store.relateWorkoutEffortSample(sample, with: workout, activity: nil) { _, error in
|
|
if let error { continuation.resume(throwing: error) } else { continuation.resume() }
|
|
}
|
|
}
|
|
}
|
|
}
|