我有一个ViewController
大标题。在我ViewController
的是 2 个单元格。UISwipeGestureRecognizer
向下滑动不起作用。我想searchController
在 titleView 中使用此滑动操作调用 a。原因可能是大标题吗?(向下滑动标题会下降并变得更大,没关系)。但是我的滑动动作将不会被识别。有任何想法吗?
我的代码: -viewDidLoad()
在 ViewController中调用的函数
func swipeSetup() {
let swipeDown = UISwipeGestureRecognizer(target: self, action: #selector(funcSwipedDown(sender:)))
swipeDown.direction = .down
self.view.addGestureRecognizer(swipeDown)
}
@objc func funcSwipedDown(sender: UISwipeGestureRecognizer){
Utils.displayAlert(title: "Info", message: "swipe down")
self.addNavigationbar() // func for adding search bar
}