Closed JFERSD closed 7 years ago
Hi @perroyverde
You can use a custom NavigationController, like this one:
`class NavigationController: UINavigationController, UIGestureRecognizerDelegate {
func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
return true
}
}`
It worked like a charm. Thanks @xiongxiong !
Hi @xiongxiong,
When I set
self.navigationController?.hidesBarsOnSwipe = true
cell options won't show. If I disable it, it works.