Change the full screen tap zone to be the center of the navigation bar instead of the whole navigation bar. Issue #1450.
This commit is contained in:
parent
84d1ccadfd
commit
00ed368683
@ -114,6 +114,14 @@ class ArticleViewController: UIViewController {
|
|||||||
NotificationCenter.default.addObserver(self, selector: #selector(contentSizeCategoryDidChange(_:)), name: UIContentSizeCategory.didChangeNotification, object: nil)
|
NotificationCenter.default.addObserver(self, selector: #selector(contentSizeCategoryDidChange(_:)), name: UIContentSizeCategory.didChangeNotification, object: nil)
|
||||||
NotificationCenter.default.addObserver(self, selector: #selector(willEnterForeground(_:)), name: UIApplication.willEnterForegroundNotification, object: nil)
|
NotificationCenter.default.addObserver(self, selector: #selector(willEnterForeground(_:)), name: UIApplication.willEnterForegroundNotification, object: nil)
|
||||||
|
|
||||||
|
let fullScreenTapZone = UIView()
|
||||||
|
NSLayoutConstraint.activate([
|
||||||
|
fullScreenTapZone.widthAnchor.constraint(equalToConstant: 150),
|
||||||
|
fullScreenTapZone.heightAnchor.constraint(equalToConstant: 44)
|
||||||
|
])
|
||||||
|
fullScreenTapZone.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(didTapNavigationBar)))
|
||||||
|
navigationItem.titleView = fullScreenTapZone
|
||||||
|
|
||||||
articleExtractorButton.addTarget(self, action: #selector(toggleArticleExtractor(_:)), for: .touchUpInside)
|
articleExtractorButton.addTarget(self, action: #selector(toggleArticleExtractor(_:)), for: .touchUpInside)
|
||||||
toolbarItems?.insert(UIBarButtonItem(customView: articleExtractorButton), at: 6)
|
toolbarItems?.insert(UIBarButtonItem(customView: articleExtractorButton), at: 6)
|
||||||
|
|
||||||
@ -275,6 +283,10 @@ class ArticleViewController: UIViewController {
|
|||||||
|
|
||||||
// MARK: Actions
|
// MARK: Actions
|
||||||
|
|
||||||
|
@objc func didTapNavigationBar() {
|
||||||
|
hideBars()
|
||||||
|
}
|
||||||
|
|
||||||
@objc func showBars(_ sender: Any) {
|
@objc func showBars(_ sender: Any) {
|
||||||
showBars()
|
showBars()
|
||||||
}
|
}
|
||||||
@ -356,14 +368,6 @@ class ArticleViewController: UIViewController {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: InteractiveNavigationControllerTappable
|
|
||||||
|
|
||||||
extension ArticleViewController: InteractiveNavigationControllerTappable {
|
|
||||||
func didTapNavigationBar() {
|
|
||||||
hideBars()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// MARK: UIContextMenuInteractionDelegate
|
// MARK: UIContextMenuInteractionDelegate
|
||||||
|
|
||||||
extension ArticleViewController: UIContextMenuInteractionDelegate {
|
extension ArticleViewController: UIContextMenuInteractionDelegate {
|
||||||
|
@ -8,10 +8,6 @@
|
|||||||
|
|
||||||
import UIKit
|
import UIKit
|
||||||
|
|
||||||
protocol InteractiveNavigationControllerTappable {
|
|
||||||
func didTapNavigationBar()
|
|
||||||
}
|
|
||||||
|
|
||||||
class InteractiveNavigationController: UINavigationController {
|
class InteractiveNavigationController: UINavigationController {
|
||||||
|
|
||||||
private let poppableDelegate = PoppableGestureRecognizerDelegate()
|
private let poppableDelegate = PoppableGestureRecognizerDelegate()
|
||||||
@ -33,8 +29,6 @@ class InteractiveNavigationController: UINavigationController {
|
|||||||
poppableDelegate.originalDelegate = interactivePopGestureRecognizer?.delegate
|
poppableDelegate.originalDelegate = interactivePopGestureRecognizer?.delegate
|
||||||
poppableDelegate.navigationController = self
|
poppableDelegate.navigationController = self
|
||||||
interactivePopGestureRecognizer?.delegate = poppableDelegate
|
interactivePopGestureRecognizer?.delegate = poppableDelegate
|
||||||
|
|
||||||
navigationBar.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(didTapNavigationBar)))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
|
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
|
||||||
@ -44,14 +38,8 @@ class InteractiveNavigationController: UINavigationController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@objc func didTapNavigationBar() {
|
|
||||||
if let tappable = topViewController as? InteractiveNavigationControllerTappable {
|
|
||||||
tappable.didTapNavigationBar()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// MARK: Private
|
// MARK: Private
|
||||||
|
|
||||||
private extension InteractiveNavigationController {
|
private extension InteractiveNavigationController {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user