iOS 10: Getting your Widget ready in 2 simple steps
iOS 10 turns widgets in to super-widgets. They now appear on the Home screen (3D touch on the app icon), and on the Search screen (swipe to the right on the Home screen or the Lock screen). But with great power, comes great responsibility.
If your app currently has a widget (i.e Today extension), you need to do a little bit of work to get it ready for it’s big day in September. This is how to get your widget iOS 10 ready in 2 simple steps.
1. Get it on the Home screen
Getting your existing Today widget to display on the home screen via 3D touch is easy. Simply add an UIApplicationShortcutWidget entry to your app pList file specifying the bundle identifier of the widget you want to display, for example;
<key>UIApplicationShortcutWidget</key
<string>com.yourName.yourApp.yourWidget</string>
2. A widget people want to look at
As Apple state, our “goal should be to design a widget that people want to add to the Search screen”. With iOS 10, the design of widgets has changed, and we most likely need to update our designs. For example, without changing anything, this is how the current Bikey widget looks on iOS 10;
It looks pretty bad, and clearly needs to be updated. The Human Interface Guidelines are here to help. In Bikeys case, these two in particular are of interest;
- “In general, use the system font in black or dark gray for text”.
- “Avoid customizing the background of a widget.”
Updating our designs based on the above, the post-op Bikey widget now looks perfectly at home with it’s siblings;
That’s it. Just (hopefully) two simple steps to get your app widget ready for it’s big day. Roll on September.