Archived
1
Fork 0

Don't show "Done" button on macOS for post detail views

This commit is contained in:
redstrate 2020-05-24 23:18:32 -04:00
parent 90e2ba2545
commit 822eff1fe5

View file

@ -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