我正在使用UISwipeGestureRecognizer
来显示另一个视图控制器,
并且我不知道如何让View Controller跟随我的手指。
我该怎么做?
方向是从下到上,如果它被滑动,则会显示另一个View控制器。
如何让这个View Controller跟随我的手指?
答案 0 :(得分:0)
// ------------在视图中右键滑动手势-------------- //
let swipeRight = UISwipeGestureRecognizer(target: self, action: Selector("rightSwiped"))
swipeRight.direction = UISwipeGestureRecognizerDirection.Right
self.view.addGestureRecognizer(swipeRight)
//调用方法:
func rightSwiped()
{
self.navigationController?.popViewControllerAnimated(true)
}
您想推送View Controller,然后在上面的代码中使用UISwipeGestureRecognizerDirection.Left