There's a feature to hide sensitive data in complications on Apple Watch, but is this feature available for third-party complications in watchOS 7?
Thanks!
Post
Replies
Boosts
Views
Activity
Hi,
I would like to know if there's a way to get the sort order of reminders as they appear in the Reminders app. As you know, you can re-order reminders in Reminders app, but it seems that there's no way to get this ordering information using EventKit API.
Thank you and best regards,
Kaz
Hi,
Is there any way to refresh EKEventStore in Watch app? On iOS, you can call EKEventStore.refreshSourcesIfNecessary() to update the event store, but unfortunately this method is not available on watchOS.
Is there any alternative way to refresh calendar events and reminders? I find that sometimes events and reminders don't sync well in Apple Watch.
Thank you and best regards,
Kaz
Hi,When dragging a view inside UIScrollView using UIDragInteraction/UIDropInteraction, the scroll view *automatically* scrolls as you drag your view near the edge of the screen. How can you prevent this behavior? I want to disable *only* the automatic scrolling, not the scrolling itself, so that the user can scroll with the second finger if he so chooses. I know I can disable scrolling using isScrollEnabled, but this will also disable the user-initiated scrolling. Thanks.