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,10 +55,15 @@ class PostDetailViewController: UIViewController, UIPopoverPresentationControlle
|
|||
imageView?.image = self.image
|
||||
|
||||
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))
|
||||
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#if !targetEnvironment(macCatalyst)
|
||||
updateWindowTitle()
|
||||
#endif
|
||||
|
|
Reference in a new issue