init(activityType:start:end:workoutEvents:totalEnergyBurned:totalDistance:device:metadata:)
Instantiates a workout that includes both workout events and the device that produced the sample data.
Declaration
convenience init(activityType workoutActivityType: HKWorkoutActivityType, start startDate: Date, end endDate: Date, workoutEvents: [HKWorkoutEvent]?, totalEnergyBurned: HKQuantity?, totalDistance: HKQuantity?, device: HKDevice?, metadata: [String : Any]?)Parameters
- workoutActivityType:
The type of activity performed during the workout. For the complete list of activity types, see Hkworkoutactivitytype.
- startDate:
The date and time when the activity started.
- endDate:
The date and time when the activity ended. This date must be equal to or later than the start date.
- workoutEvents:
An array of workout event objects. This array specifies when the user has paused and resumed the workout activity. This method calculates the workout’s duration based on the total amount of active time between the provided start and end dates.
- totalEnergyBurned:
A quantity using energy units, or
nil. This property sets the workout’s Totalenergyburned property. It represents the total active energy burned during the workout. - totalDistance:
A quantity using length units, or
nil. This property sets the workout’s Totaldistance property. - device:
The device that generated the data for this sample.
- metadata:
The metadata dictionary contains extra information describing this workout. The dictionary’s keys are all Nsstring objects . The values may be Nsstring, Nsnumber, or Nsdate objects. For a complete list of predefined metadata keys, see Metadata Keys.
Using predefined keys helps facilitate sharing data between apps; however, you are also encouraged to create your own, custom keys as needed to extend the HealthKit quantity sample’s capabilities.
Return Value
A workout object with the specified duration, total energy burned, total distance, device, metadata, and workout events.
Discussion
This method calculates the workout’s duration based on the amount of time it spends in an active state. A workout starts in an active state. A pause event switches it to an inactive state, and a resume event switches it back to an active state. For more information on workout events, see HKWorkoutEvent.
If the total energy burned or total distance are non-zero values, create a set of corresponding samples that add up to the calculated totals. Associate these samples with the workout by calling the health store’s add(_:to:completion:) method.
See Also
Related Documentation
Creating workouts
init(activityType:start:end:)init(activityType:start:end:duration:totalEnergyBurned:totalDistance:metadata:)init(activityType:start:end:workoutEvents:totalEnergyBurned:totalDistance:metadata:)init(activityType:start:end:duration:totalEnergyBurned:totalDistance:device:metadata:)init(activityType:start:end:workoutEvents:totalEnergyBurned:totalDistance:totalFlightsClimbed:device:metadata:)init(activityType:start:end:workoutEvents:totalEnergyBurned:totalDistance:totalSwimmingStrokeCount:device:metadata:)