Tag: pushControllerWithName
-
Using WatchOS2 Navigation in Swift
It’s rare to have a one controller application, even in something as small as the Apple watch. Multiple View Controllers, or Interface Controllers as they are called in WatchKit, need ways to move between controllers. WatchOS2 has a simplified version of the iOS navigation types. In this lesson we’ll explore these three types of navigation…
-
Swift WatchKit: Introducing Navigation to the Apple Watch(Part 4: Dismissals and Segues)
In our lessons setting up navigation controllers on the Apple Watch, we’ve learned how to set up the storyboard, how to use push controllers programmatically and introduced sending data to another controller and back using contexts and delegates. In this lesson, we’ll pass data when you have a segue and learn how to dismiss controllers.…
-
Swift WatchKit: Introducing Navigation to the Apple Watch(Part 3: Using Delegates and Contexts)
In our last lesson we set up navigation in the Storyboard and programmatically. We left off with passing data from one view controller to another using the context parameter like this: We made a context variable which we passed to the destination controller. We haven’t done anything yet with the value of the context. In…