We also encountered this problem. Has it been solved? Or the future can solve it?
Thx!
Post
Replies
Boosts
Views
Activity
I fixed my question by doing this
@available(iOS 14, *)
@objc public func reloadAllWidget() {
#if arch(arm64) arch(i386) arch(x86_64)
WidgetCenter.shared.reloadAllTimelines()
#endif
}
But I wonder is this arch limit should developer to know and use?