Reputation: 1048
Am currently doing a iWatch game app and its completing working. I am planing to add new feature that allow multiplayer. So the user can play against his friends locally using wifi. I have already found that iWatch can communicate to its iPhone app.
Upvotes: 0
Views: 494
Reputation: 3029
I can think of only two solutions. Either you use your containing iOS app to do the communication between both players. Handling the communication between both the Apple Watch App and the iOS app will be in the delegate method handleWatchKitExtention
in your AppDelegate. Or you can use either socket programming or heavy REST APIs requests to determine the lifetime of each player.
Upvotes: 1