解决方法
所以在WatchOS 2这是可能的!
你必须在iPhone方面做:
第一:
import WatchConnectivity
然后 :
if WCSession.isSupported() { // check if the device support to handle an Apple Watch let session = WCSession.defaultSession() session.delegate = self session.activateSession() // activate the session if session.paired { // Check if the iPhone is paired with the Apple Watch // Do stuff } }
我希望它会帮助你:)