Hides SyncResultViewController Done button when not presented modally

This commit is contained in:
Riley Testut 2019-03-25 13:00:09 -07:00
parent 9db68aa9e4
commit 72f4da6bc4

View File

@ -83,6 +83,11 @@ class SyncResultViewController: UITableViewController
super.viewDidLoad()
self.tableView.dataSource = self.dataSource
if let navigationController = self.navigationController, navigationController.viewControllers.count != 1
{
self.navigationItem.rightBarButtonItem = nil
}
}
override func prepare(for segue: UIStoryboardSegue, sender: Any?)