deepthi toopran
deepthi toopran

Reputation: 213

watchOS 2 WatchConnectivity Time lag between Apple Watch and iPhone while sending data from one to another?

I am using WatchConnectivity (WCSession) to pass info from Apple Watch to iPhone, but I see there is a (10-15 secs) of lag between Apple Watch and iPhone. For connectivity I am using session.sendMessage() and session.didReceiveMessage(). There is a lot of lag between Apple Watch and iPhone. I have also tried updateApplicationContext(), but I see no difference in the lag. Is there any other way to handle the lag between them?

Thanks

Upvotes: 2

Views: 758

Answers (1)

lehn0058
lehn0058

Reputation: 20257

I have been using iOS 9 Beta 5 and I have not had any noticeable lag on my real devices. Transfer time is normally with a second or two. However, this will greatly depend on the size of the message object you are trying to send. When I first was sending data my object was too large and it was timing out around 30 seconds. After trimming it down to a more manageable size, it has been quite performant.

Upvotes: 1

Related Questions