Files
navigation-stack/NavigationStackDemo/ViewControllers/FifthViewController/FifthViewController.swift
T
2016-09-30 17:56:08 +03:00

17 lines
345 B
Swift

//
// FifthViewController.swift
// NavigationStackDemo
//
// Created by Alex K. on 29/02/16.
// Copyright © 2016 Alex K. All rights reserved.
//
import UIKit
class FifthViewController: UITableViewController {
@IBAction func backHandler(_ sender: AnyObject) {
let _ = navigationController?.popViewController(animated: true)
}
}