- Display a list using a
UITableViewController
. - Segues from a tapped cell to a detail view controller.
- Create a
UITableViewController
embedded in aUINavigationController
. Name the subclassFISHellaMasterTableViewController
and set the accessibility identifier (not the label) of the table view controller's view to "Table". - Program the tableview to load with 100 cells, each numbered 1 through 100.
- When a cell is tapped, it should take the user to a new screen (a subclass of
UIViewController
namedFISHellaDetailViewController
) with the same number as the tapped cell displayed full screen. Set the `UILabel's accessibility label (not the identifier) to "bigNumber".
View Hella Cells on Learn.co and start learning to code for free.