Post not yet marked as solved
Hi,
do you know if any data from AW Workout app are actually written to HealthKit only after the workout is over ?
I was wondering how I can read the data (route gps coordinates, specifically) while the workout session is still ongoing.
Thanks!
Post not yet marked as solved
Hi,
it's been almost 3 days since I submitted an app update for review. Is anyone else also experiencing such a long waiting for review time ? It's the first time in years this has happened
Post not yet marked as solved
Hello,on a split view controller with master view shown (with displayModeButton) in portrait mode on ipad I need some controls on the detail view to receive touch events; in the old, deprecated, UISplitViewControllerDelegate methods I used to set the passthroughViews for the corresponding master view popoverController which no longer seems to exist. How can I achieve the same behaviour on iOS ≥ 10 ? I want touch events on the background detail view to be correctly delivered to some of its controls (not all), what I get is just the master view to hide whenever I touch outside it.Thanks for any hint!Nkt.
Post not yet marked as solved
Hello,I'm succesfully testing critical alerts to iOS12 devices. If the user disable critical alerts the notification is received as a normal push notifications.However on pre-iOS12 devices the notifications are always received silently, regardless of users settings. I testted this on a device with iOS10.x.To reproduce the problem just send this notification on a pre-iOS12 device:{"aps":{"alert": { "title":"mytitle","body":"mybody" }, "badge":99, "sound": { "name":"default", "critical":1, "volume":1.0} }}no sound will be played. This seems to happen anytime I use a dictionary for the sound property, regardless of the "critical" flag.How should backwards compatibility with older devices be handled ? Thanks!