Skip to content

Instantly share code, notes, and snippets.

@saraheolson
Last active March 7, 2017 18:53
Show Gist options
  • Save saraheolson/a85e6ae8c3eca372c7446a6805816bce to your computer and use it in GitHub Desktop.
Save saraheolson/a85e6ae8c3eca372c7446a6805816bce to your computer and use it in GitHub Desktop.
protocol HeartRateDelegate {
func heartRateUpdated(heartRateSamples: [HKSample])
}
var heartRateDelegate: HeartRateDelegate?
func createHeartRateStreamingQuery(_ workoutStartDate: Date) -> HKQuery? {
...
self.heartRateDelegate?.heartRateUpdated(heartRateSamples: sampleObjects)
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment