Seems like WatchKit is built using the same extension mechanism brought forth in ios8.
I started into making a Today Extension and read through the guide. It says data is shared using App Groups, as is the case in WatchKit, but, unlike it WK, it seems to be saying that you should:
- not assume the parent app is running
- wake it up to get data
So my question is simple: am I wrong about this? I want some information from the app. It seems like I could grab the context object and call openURL and ask the app to refresh the data in the channel then have my extension listen for the updated notification. But I can't find any examples that do that.