WatchKit Flashcards
1
Q
Complications
A
Small little icons on the bottom of the screen that goes to different apps
2
Q
There are two ways to design the application
A
Page-based
- pushControllerWithName:context:-
- Every time you push a new interface controller, it comes with the back button for free, just like with our UINavigationController.
- You can also programmatically navigate the user back by calling the popController method on the InterfaceController.
3
Q
Background app Refresh
A
Refreshes only the favorite apps for user
Apple determines the user’s favorite apps as being applications that are stored on the dock, or have a complication on the user’s watch face.
4
Q
WatchKit Classes
A
The primary classes we will use are: WKInterfaceController(UIViewController) WKInterfaceObject(UIView) WKInterfaceGroup(UIScrollView) WKInterfaceTable(UITableView) WKInterfaceLabel(UILabel) WKInterfaceImage(UIImageView)