Swift
iOS Development
NavigationController
ViewController
SwiftUI

presenting ViewController with NavigationViewController swift

Interview Questions practice on Codemia

Over 8,000 real interview questions from top companies, searchable by company and role.

Browse interview questions

Introduction

Presenting a view controller wrapped in UINavigationController is a common UIKit pattern when a modal flow needs its own navigation stack. Examples include settings, onboarding, and multistep forms presented over the current screen.

This pattern gives you a navigation bar, push/pop support inside the modal, and independent dismissal behavior. This article covers the standard setup and integration details.

Core Sections

1. Wrap root controller in navigation controller

swift
1let detailsVC = DetailsViewController()
2let nav = UINavigationController(rootViewController: detailsVC)
3nav.modalPresentationStyle = .formSheet
4present(nav, animated: true)

Now the modal has its own stack starting at detailsVC.

2. Configure bar actions for dismissal

swift
1detailsVC.navigationItem.leftBarButtonItem = UIBarButtonItem(
2    barButtonSystemItem: .close,
3    target: detailsVC,
4    action: #selector(DetailsViewController.closeTapped)
5)

Inside closeTapped, call dismiss(animated: true).

3. Push additional screens inside modal stack

swift
let editVC = EditViewController()
self.navigationController?.pushViewController(editVC, animated: true)

Push/pop remains local to the modal navigation controller.

4. Data flow and completion handling

Use delegates/closures/coordinators to send result data back when modal is dismissed. Keep dismissal decisions centralized to avoid duplicated navigation logic.

5. Build a repeatable validation checklist

Once the implementation is in place, create a deterministic validation checklist for UINavigationController-backed modal presentation. At minimum, include one baseline scenario, one edge-case scenario, and one failure-path scenario with expected outcomes documented in plain language. This prevents knowledge from staying implicit and reduces the risk of regressions during dependency updates or refactors.

A useful checklist also captures runtime assumptions: framework versions, SDK versions, configuration flags, and environment variables required for a successful run. Many teams skip this because the setup seems obvious during initial development, but those hidden assumptions are usually what break first when code moves to CI, staging, or another developer machine.

text
1validation checklist
2- baseline case with expected output and key fields
3- edge case with constrained or unusual input
4- failure case with expected error handling behavior
5- recorded runtime and dependency assumptions

Keep this checklist versioned with code. If behavior changes, update the expected outputs in the same pull request so future debugging has an authoritative reference for what changed and why.

6. Operational hardening and maintenance

Long-term reliability for UINavigationController-backed modal presentation requires observability and explicit ownership. Add targeted logs and metrics around critical steps so incident responders can quickly identify whether failures come from input quality, environment drift, external service dependencies, or code regressions. Without these signals, most incident time is lost reconstructing context instead of fixing root causes.

Define maintenance routines for upgrades and compatibility checks. Libraries and platforms evolve continuously, and subtle behavior changes are common. Lightweight smoke tests should run regularly, not only during feature work, to catch drift before it reaches production.

bash
# example recurring check command
make smoke-test

Finally, document rollback criteria in advance. If a deployment changes UINavigationController-backed modal presentation behavior unexpectedly, teams should know when to roll back immediately versus when to hot-fix forward. This converts operational response from guesswork into a controlled process and improves overall system resilience.

7. Testing and rollout checklist

Before shipping changes related to navigation-wrapped modal presentation, run a small rollout checklist that validates behavior across at least one older runtime target, one modern runtime target, and one production-like environment configuration. Include automated checks where possible and keep screenshots or sample outputs for UI or text-sensitive behavior so regressions are easy to spot during review.

A disciplined checklist reduces the chance of environment-specific failures and makes future maintenance much faster because expected behavior is documented with concrete evidence rather than memory.

Common Pitfalls

  • Presenting child controller directly and expecting navigation bar to appear.
  • Dismissing from wrong controller instance in nested flows.
  • Mixing modal dismissal with pop semantics incorrectly.
  • Forgetting to configure presentation style for iPad behavior.
  • Retaining modal controllers strongly and causing memory leaks.

Summary

Wrap the presented controller in a UINavigationController when a modal flow needs internal navigation. Add explicit close controls, keep push/pop inside modal stack, and use clear callbacks for returning data. This creates clean and maintainable UIKit modal navigation behavior.


Related reading
Free course
Beginner
7 lessons
2 hours
Tackling System Design Interview Problems

A short course that equips you with the skills to approach system design interviews methodically.

Start the free course
Track what you have practised

A free account saves your progress, solutions and study plan across every problem on Codemia.

Interview Questions practice on Codemia

Over 8,000 real interview questions from top companies, searchable by company and role.

Browse interview questions

All Rights Reserved.