Hides SyncResultViewController Done button when not presented modally
This commit is contained in:
parent
9db68aa9e4
commit
72f4da6bc4
@ -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?)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user