Post

Replies

Boosts

Views

Activity

Reply to WidgetKit complications won't update
Has anyone explored different approaches? such as: • iCloud Key-Value? • Sharing the network layer between iPhone and Watch? The second approach could involve using push notifications on the WatchOS side to wake the watch app, reload the widget (watch extension), and fetch a new timeline from an API using reloadTimeline
Topic: App & System Services SubTopic: General Tags:
Jul ’24
Reply to WidgetKit complications won't update
I hope this gets fixed soon. I'm still experiencing the same issue with the Watch complication update. Off-topic, but I'm facing an issue with sharing UserDefaults data between iOS and watchOS (including the complication). I also hope WidgetKit receives improvements soon. Looking forward to any updates.
Topic: App & System Services SubTopic: General Tags:
Jul ’24
Reply to Can't build to simulator on Apple Silicon
I found the fix (really easy) in a blog of Narlei dev (I can't paste the URL) 1- Set exclude arm64 architecture in your project 2- This at the end of your Podfile post_install do |installer| installer.pods_project.build_configurations.each do |config| config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64" end end
Apr ’22