Is transferCurrentComplicationUserInfo more suitable for complication update?

The distinction between these two WCSession methods involve when the data is sent, and whether the watchkit extension is woken up or not. transferCurrentComplicationUserInfo: is specifically designed for transferring complication user info meant to be shown on the watch face right now. The complication user info is marked “Urgent”, and is placed at the front … Read more

Send messages between iOS and WatchOS with WatchConnectivity in watchOS2

WatchConnectivity First the two classes that are supposed to communicate with each other (iOS and watchOS) need to conform the <WCSessionDelegate> and #import the WatchConnectivity framework Before you can send data you need to check if your device is able to send data if ([WCSession isSupported]) { WCSession *session = [WCSession defaultSession]; session.delegate = self; … Read more