滑动 left/right 没有故事板的 uiview
swipe left/right uiview without storyboard
我想向右滑动显示另一个视图,向左滑动返回第一个视图,不使用故事板
像这个例子:
谁能告诉我如何使用 swift 4
我假设如果你要使用滑动手势,你会做这样的事情:
let swipeGesture = UISwipeGestureRecognizer()
let scrollView = UIScrollView()
swipeGesture.direction = .right
swipeGesture.addTarget(self, action: #selector(scrollToBeginning))
@objc func scrollToBeginning() {
scrollView.setContentOffset(.zero, animated: true)
}
或使用scrollView.scrollRectToVisible(CGRect(x: 0, y: 0, width: 1, height: 1), animated: true)
我想向右滑动显示另一个视图,向左滑动返回第一个视图,不使用故事板 像这个例子:
谁能告诉我如何使用 swift 4
我假设如果你要使用滑动手势,你会做这样的事情:
let swipeGesture = UISwipeGestureRecognizer()
let scrollView = UIScrollView()
swipeGesture.direction = .right
swipeGesture.addTarget(self, action: #selector(scrollToBeginning))
@objc func scrollToBeginning() {
scrollView.setContentOffset(.zero, animated: true)
}
或使用scrollView.scrollRectToVisible(CGRect(x: 0, y: 0, width: 1, height: 1), animated: true)