Don't show "Done" button on macOS for post detail views
This commit is contained in:
parent
90e2ba2545
commit
822eff1fe5
1 changed files with 6 additions and 1 deletions
|
@ -55,7 +55,12 @@ class PostDetailViewController: UIViewController, UIPopoverPresentationControlle
|
||||||
imageView?.image = self.image
|
imageView?.image = self.image
|
||||||
|
|
||||||
if(isPopup) {
|
if(isPopup) {
|
||||||
|
#if targetEnvironment(macCatalyst)
|
||||||
|
navigationItem.leftBarButtonItem = UIBarButtonItem(title: nil, style: .done, target: nil, action: nil)
|
||||||
|
#else
|
||||||
navigationItem.leftBarButtonItem = UIBarButtonItem(title: "Done", style: .plain, target: self, action: #selector(closePopup))
|
navigationItem.leftBarButtonItem = UIBarButtonItem(title: "Done", style: .plain, target: self, action: #selector(closePopup))
|
||||||
|
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue