Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Go to view that called modal view.

In Xcode (swift), once I call a modal view, how do I go back to the view that called the modal view?

1 Answer

Thomas Dobson
Thomas Dobson
7,511 Points

In the viewController for your modal view add a dismiss function like so:

    @IBAction func dismiss(_ sender: Any) {
        dismiss(animated: true, completion: nil)
    }

Would this be before or after viewDidLoad?

Comment edited. See below for edit.

I added the IBAction before the viewDidLoad and it worked.