Post

Replies

Boosts

Views

Activity

Reply to Apple Watch HKWorkoutSession does not collect the health data sometimes
I believe the metrics that are enabled automatically depend on the activity type and location. At least that is the case for distance. I'm not sure what the HR issue is, assuming this is a watch workout. But maybe it's an apple health permission issue. Also, check if Power Saving mode is on. That limits heart rate monitoring. Open the watch app on your phone, tap on General and see if Workout Power Saving Mode is turned on. If so, turn it off.
Jul ’20
Reply to Horizontal Accuracy on Apple Watch Series 3 and iOS 14 is terrible
These are the settings I use to for workout route maps:     lazy var locationManager: CLLocationManager = {         let _locationManager = CLLocationManager()         _locationManager.desiredAccuracy = kCLLocationAccuracyBest         _locationManager.activityType = .fitness         _locationManager.allowsBackgroundLocationUpdates = true         _locationManager.distanceFilter = kCLDistanceFilterNone         return _locationManager     }()
Jul ’20
Reply to SF Symbols missing in iOS 13 version of app
Answering my one question in case it helps someone. All the SF Symbols were referenced in Storyboards and were using a rendering mode as Automatic. Changing to Template seems to fix the issue. I'm not sure why this broke in iOS 13 when I moved to Xcode 12. BTW, the original message had a type x.mark.circle -> xmark.circle.
Dec ’20