Reputation: 1019
Interface Builder shows the apple watch screen the way it will look without page dots at the bottom. Is there any way to add page dots to IB or any common practices for designing to spec in spite of this limitation? When I make a watch screen that is not vertically-scrollable the page dots cut off the bottom of the page or shift the whole screen up.
This is what it looks like in IB (as you can see there are no page dots)
Edit: This is what it looks like after adding next page segue as was suggested.
Upvotes: 0
Views: 158
Reputation: 264
To create a a page-based interface,
You configure a page-based interface in your app’s storyboard by creating a next-page segue from one interface controller to the next.
- In your storyboard, add interface controllers for each of the pages in your interface.
- Control-click your app’s main interface controller, and drag the segue line to another interface controller scene.
- The second interface controller should highlight, indicating that a segue is possible.
- Release the mouse button. Select “next page” from the relationship segue panel.
- Using the same technique, create segues from each interface controller to the next. The order in which you create your segues defines the order of the pages in your interface.
Upvotes: 1