Hi. Every One.
how can i disable left,right swipe in last page?
plz tell me your tip!
Put this into your parent view controller
override func scrollViewDidScroll(_ scrollView: UIScrollView) {
scrollView.bounces = false
super.scrollViewDidScroll(scrollView)
}
Hi @JayHan-K,
You can disable bounces in your custom pager view controller's viewDidLoad function:
class SpotifyExampleViewController: ButtonBarPagerTabStripViewController {
override func viewDidLoad() {
super.viewDidLoad()
containerView.bounces = false
}
}
Most helpful comment
Put this into your parent view controller
override func scrollViewDidScroll(_ scrollView: UIScrollView) {