
As we work with our partners on Apple Watch support, I thought that I’d share some tips on Apple Watch development.
How does it work?
When you add a WatchKit app target to your existing project, Xcode creates 2 directories: WatchKit extension and WatchKit app. WatchKit extension runs on your iPhone, but in a separate sandbox than your iOS app though. WatchKit app contains only Storyboard and Resources. The data is synced between WatchKit app and WatchKit extension over Bluetooth Low Energy so it’s a good practice to avoid sending big chunks of data between these two targets.
How to synchronize your data?
There are several ways to send data between WatchKit extension and iOS app running on iPhone. After trying NSKeyedUnarchiver and NSUserDefaults I’ve come across a great open-source library called MMWormhole developed by folks at MutualMobile. It basically uses NSKeyedArchiver to write data to files which are written to the application’s shared App Group. It also lets you register objects as listeners, so you get notified when new message is passed around.
Let’s try it in practice!
I’ve created a simple app called Contacts, which lets you browse, add and show details of contacts on the iPhone. Every time user enters the contact details view – corresponding contact details are displayed on the AppleWatch.



Take into account that you have to be a member of Apple Developer program to run and test out the demo project in Xcode. Here’s a short guide on how to configure your app to support App Groups.
So we simply want to send Contact object. Here’s how Contact model looks like:
Since MMWormhole uses NSKeyedArchiver for encoding objects and NSKeyedUnarchiver for decoding,
our Contact class must conform to NSCoding protocol thus we need to override these two methods:
Also we need to specify unique keys used by a Contact object to encode or decode its instance variables.
To do so, we need to put this line of code before we try to send message through wormhole
and this one before we try to read message from wormhole
Otherwise we’ll receive the following error:
And that’s it. Now we’re ready to use MMWormhole to pass around our custom class objects.
I’ve created a WatchKitDataManager class responsible of sending and reading messages between iOS app and WatchKit extension.
It’s that easy!
Another great feature of MMWormhole library is ability to register object as listeners for new messages so we can very easily update our UI. Here’s how to do this:
And now when we run our iOS and WatchKit apps simultaneously we’ll be able to see that contact details on Apple Watch are updated each time user enters contact details view on corresponding iOS app.
If you have any questions feel free to contact me via mateusz.nadolski@tooploox . You can view the source code on Github here.
Read also about Apple app clips, new feature for iOS 14.