Modifying Tables

Whereas setting up a table’s contents in WatchKit is markedly different from using UITableView on iOS, modifying the content once we’ve done that initial setup is pretty similar—we just need to tell the table where to add the rows. To support what we’re going to do in the next chapter,, let’s include support for adding a new run to the table once we’ve set everything up.

We’ll use the interface controller’s awakeWithContext method to receive the data. When we get a Run passed in as the context, we’ll use the table’s insertRowsAtIndexes(_:withRowType:) method to add the row. We’ll then use its rowControllerAtIndex just like when we set up the table, but this time just for the newly inserted row. Our method will look like this ...

Get Developing for Apple Watch now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.