Ответ 1
Итак, поскольку WatchOS 2 это возможно!
Вам нужно сделать на стороне iPhone:
Сначала:
import WatchConnectivity
Тогда:
if WCSession.isSupported() { // check if the device support to handle an Apple Watch
let session = WCSession.default()
session.delegate = self
session.activate() // activate the session
if session.isPaired { // Check if the iPhone is paired with the Apple Watch
// Do stuff
}
}
Надеюсь, это поможет вам:)