Easy way to update app content via apple watch
问题 I couldn't find an easy way to update the view in my iPhone app when I push a button on the AppleWatch App yet. I tried it with NSUserDefaults Observer like this: iPhone App Viewcontroller(inside ViewDidLoad()): // Create and share access to an NSUserDefaults object. mySharedDefaults = NSUserDefaults(suiteName: "group.sharedTest") //Add Observer NSUserDefaults.standardUserDefaults().addObserver(self, forKeyPath: "test", options: NSKeyValueObservingOptions.New, context: nil) In the Watchkit