HealthKitUI Spazio dei nomi
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Lo spazio dei nomi HealthKitUI fornisce ActivityRingView che visualizza le informazioni di HealthKit.
Classi
HKActivityRingView |
Oggetto UIView che mostra i dati in un . |
HKActivityRingView.HKActivityRingViewAppearance |
Classe Di aspetto per oggetti di tipo HKActivityRingView. |
Commenti
Gli sviluppatori possono impostare i valori all'interno dell'uso di un HKActivitySummary oggetto, come illustrato nell'esempio HKActivityRingView seguente:
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);