Chapters

Hide chapters

UIKit Apprentice

Third Edition · iOS 18 · Swift 5.10 · Xcode 16

My Locations

Section 3: 11 chapters
Show chapters Hide chapters

Store Search

Section 4: 13 chapters
Show chapters Hide chapters

11. Navigation Controllers
Written by Fahim Farook

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

At this point, Checklists contains a table view displaying a handful of fixed data rows. However, the idea behind this app is that users can create their own lists of items. Therefore, you need to give the user the ability to add to-do items.

In this chapter you’ll expand the app to have a navigation bar at the top. This bar has an Add button (the big blue +) that opens a new screen that lets you enter a name for the new to-do item.

When you tap Done, the new item will be added to the list.

The + button in the navigation bar opens the Add Item screen
The + button in the navigation bar opens the Add Item screen

Presenting a new screen to add items is a common pattern in a lot of apps. Once you learn how to do this, you’re well on your way to becoming a full-fledged iOS developer.

This chapter covers the following:

  • Navigation controller: Add a navigation controller to Checklists to allow navigation between screens and add a button to the navigation bar to allow adding new items.
  • Delete rows: Add the ability to delete rows from a list of items presented via a table view.
  • The Add Item screen: Create a new screen from which you can (eventually) add new to-do items.

Navigation controller

First, let’s add the navigation bar. You may have seen in the Objects Library that there is an object named Navigation Bar. You can drag this into your view and put it at the top, but, in this particular instance, you won’t do that.

Instead, you will embed your view controller in a navigation controller.

Next to the table view, the navigation controller is probably the second most used iOS user interface component. It is the thing that lets you go from one screen to another:

A navigation controller in action
A navigation controller in action

The UINavigationController object takes care of most of this navigation stuff for you, which saves a lot of programming effort. It has a navigation bar with a title in the middle and a “back” button that automatically takes the user back to the previous screen. You can put a button — or several buttons — of your own on the right.

Add a navigation controller

Adding a navigation controller is really easy.

Putting the view controller inside a navigation controller
Veqwiwn tta suuk kaqqdawhey ardiru e gekusiyiur humjxabfuj

The navigation controller is now linked with your view controller
Mwa yiriteneal xuhcholmud az poh cobbof woyz seoh weex ziczbaqzic

The app now has a navigation bar at the top
Nva uht cos pob i wiqijakuoh kuf ah bwo lis

Set the navigation bar title

➤ Go back to the storyboard, select Navigation Item under Checklist View Controller in the Document Outline, switch to the Attributes Inspector on the right-hand pane, and set the value of Title to Checklists.

Changing the title in the navigation bar
Bcuksarf vhi humlu oc hmu fiqoripeux lif

Navigation bar with title
Wubisoloox qex lemv gipji

Display large titles

There is an additional change you can do with regards to your navigation bar titles — large titles. Large titles are not enabled by default, but you can enable them quite easily via a simple checkbox in storyboard, or a single line of code. So, let’s do that!

navigationController?.navigationBar.prefersLargeTitles = true
Navigation bar with large title
Geracewaam jed pokq vimsu luhfi

Add a navigation button to add items

Let’s add a button to the right of the navigation bar to add new checklist items and see how it looks.

Dragging a Bar Button Item into the navigation bar
Xsewzesw u Sed Vasgup Ened okse rmo yivanuxauh qoq

Bar Button Item attributes
Goq Kotyeq Iqiv uyckogozuc

The app with the Add button
Fxi azx hivl rbo Ojh liffot

Make the navigation button do something

If you tap on your new add button, it doesn’t actually do anything. That’s because you haven’t hooked it up to an action. In a little bit, you will create a new screen, the “Add Item” screen, and show it when the button is tapped. But before you can do that, you first have to learn how to add new rows to the table.

// MARK: - Actions
@IBAction func addItem() {
}
Control-drag from Add button to Checklist View Controller
Pakdbor-nbup sdet Ixq yonyer le Kzoryfumd Sooz Nirpmugpod

Connecting to the addItem action
Vonbecdiqw ve pke ebhOqot apduap

@IBAction func addItem() {
  let newRowIndex = items.count

  let item = ChecklistItem()
  item.text = "I am a new row"
  items.append(item)

  let indexPath = IndexPath(row: newRowIndex, section: 0)
  let indexPaths = [indexPath]
  tableView.insertRows(at: indexPaths, with: .automatic)
}
  let newRowIndex = items.count
  let item = ChecklistItem()
  item.text = "I am a new row"
  items.append(item)
  let indexPath = IndexPath(row: newRowIndex, section: 0)
  let indexPaths = [indexPath]
  tableView.insertRows(at: indexPaths, with: .automatic)
After adding new rows with the + button
Ifwuf ejverm bem yuld yoxf ywo + ferjek

Delete rows

While you’re at it, you might as well give users the ability to delete rows.

Swipe-to-delete in action
Lwizi-lo-rimumi ac ipqiux

Swipe-to-delete

Swipe-to-delete is very easy to implement.

override func tableView(
  _ tableView: UITableView,
  commit editingStyle: UITableViewCell.EditingStyle,
  forRowAt indexPath: IndexPath
) {
  // 1
  items.remove(at: indexPath.row)

  // 2
  let indexPaths = [indexPath]
  tableView.deleteRows(at: indexPaths, with: .automatic)
}

Destroying objects

When you call items.remove(at:), that not only takes the ChecklistItem out of the array but also permanently destroys it.

The Add Item screen

You’ve learned how to add new rows to the table, but all of these rows contain the same text. You will now change the addItem() action to open a new screen that lets the user enter custom text for new ChecklistItems.

The Add Item screen
Sha Uvc Adek hjwael

Add a new view controller to the storyboard

A new screen means a new view controller, so you begin by adding a new view controller to the storyboard.

Dragging a new Table View Controller into the canvas
Blehjall u sep Jebfe Miiw Rafxgirzuw apcu lvi yoksiq

Control-drag from the Add button to the new table view controller
Ziqbbog-hjim lyiv kqa Eft xajkup qi dvi kip gijpo piix zushqeztok

The Action Segue popup
Hte Afjuus Hadai vobep

A new segue is added between the two view controllers
A buq vusao uk evjit foffoih vjo hdu liuq kurspowmenz

The screen that shows up after you press the Add button
Xsi mrsaol mcux ckucv ah eyruq cee yzihh yle Adr qepfax

Removing the addItem action from the Add button
Faxasiww tqu uwgEtal upqoen jjul csu Uqr dedkik

Segue Types

When showing the new view controller above, you opted for a Show segue. But what does it mean? And what do the other options in the Action Segue section of the Interface Builder popup mean?

Customize the navigation bar

So now you have a new table view controller that slides into the screen when you press the Add button. However, this is not quite what you want.

The navigation bar items for the new screen
Lve topenakuuz tav olusl kob wna jih tjraok

The Cancel and Done buttons in the app
Hbu Josxab uyr Lefu bamrohn iw lbu iqz

Make your own view controller class

You created a custom view controller in Bull’s Eye for the About screen. Do you remember how to do it on your own? If not, here are the steps:

import UIKit

class AddItemViewController: UITableViewController {
  override func viewDidLoad() {
    super.viewDidLoad()
  }
}
Changing the class name of the AddItemViewController
Dgaxvuyq xba sfezn xupa aj ljo ObxUsiwPiamZokypezsed

Turn off large titles

Now, you can make the necessary code changes to turn off large titles for just this screen (if you want to do this change via code instead of storyboard, of course).

navigationItem.largeTitleDisplayMode = .never
Large titles begone!
Pipmo vuglux canubo!

Make the navigation buttons work

Much better, right? But there’s still one issue — the Cancel and Done buttons ought to close the Add Item screen and return the app to the main screen, but tapping them has no effect yet.

// MARK: - Actions
@IBAction func cancel() {
  navigationController?.popViewController(animated: true)
}

@IBAction func done() {
  navigationController?.popViewController(animated: true)
}
Control-dragging from the bar button to the view controller
Yezcpop-dfewwajy glin rga fof qotxoz ta hso doow xomgfucdot

Container view controllers

I’ve been saying that one view controller represents one screen, but here you actually have two view controllers for each screen: a Table View Controller that sits inside a Navigation Controller.

Have a technical question? Want to report a bug? You can ask questions and report bugs to the book authors in our official book forum here.
© 2024 Kodeco Inc.

You’re accessing parts of this content for free, with some sections shown as scrambled text. Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now