HealthKitUI 名前空間
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HealthKitUI 名前空間は、HealthKit 情報を表示する ActivityRingView を提供します。
クラス
HKActivityRingView |
UIView のデータを示す 。 |
HKActivityRingView.HKActivityRingViewAppearance |
型 HKActivityRingViewのオブジェクトの外観クラス。 |
注釈
開発者は、次の例に示すように、 オブジェクトをHKActivitySummary使用して 内HKActivityRingViewの値を設定できます。
var view = new HKActivityRingView (new CGRect (10, 10, 200, 200));
var summary = new HKActivitySummary ();
//Outer ring (Red)
summary.ActiveEnergyBurnedGoal = HKQuantity.FromQuantity (HKUnit.Kilocalorie, 200.0);
summary.ActiveEnergyBurned = HKQuantity.FromQuantity (HKUnit.Kilocalorie, 150.0);
//Middle ring (Green)
summary.AppleExerciseTime = HKQuantity.FromQuantity (HKUnit.Hour, 0.5);
summary.AppleExerciseTimeGoal = HKQuantity.FromQuantity (HKUnit.Hour, 1.0);
//Inner ring (Blue)
summary.AppleStandHours = HKQuantity.FromQuantity (HKUnit.Count, 2);
summary.AppleStandHoursGoal = HKQuantity.FromQuantity (HKUnit.Count, 8);