Check if user has AppleWatch connected without prompting the watch
问题 We are using Google Analytics , and want to know how many of our users are in possession of an AppleWatch . I have searched Stack for answers, and the recurring answer is to use this: 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 } } The problem with this