Post

Replies

Boosts

Views

Activity

Reply to Ui-page based controller ui doesn't change unless the screen is changed
Finally, I got a workaround. This thread was quite helpful. https://developer.apple.com/forums/thread/123624 I just set these observer in awake function, NotificationCenter.default.addObserver( self, selector: #selector(self.applicationDidBecomeActive), name: WKExtension.applicationDidBecomeActiveNotification, object: nil ) thus, wrote callback for restore previous state like this. func applicationDidBecomeActive() { if (PlayingRecord.currentHole == self.holeNum) { self.becomeCurrentPage() self.updateView() } } I hope this would be someone's help.
Dec ’22
Reply to WatchConnectivity not working on device
I'm also facing a similar issue. I have released counter app from last year. Some users told me a problem about connection between iOS and watch OS. She is using iPhone8 14.0.1 and AppleWatchSeries3 WatchOS 7.0.3 . She updated iOS and Watch OS version and the problem happened. My iPhone and watch(iPhone11 iOS14.0.1, Applewatch Series4 WatchOS7.0.2) have not seen this connection problem. And also a simulator working fine. I supplied a testflight debug version that shows connectivity on iOS to the user. After that, the user told me that hers iOS app showed always unreachable. Does anyone have a solution? IMO, WatchSeries3 + watchOS7 is not good combination.
Nov ’20