Xlpagertabstrip: how to disable left, right swipe in last page

Created on 21 Oct 2016  路  2Comments  路  Source: xmartlabs/XLPagerTabStrip

Hi. Every One.

how can i disable left,right swipe in last page?

plz tell me your tip!

question

Most helpful comment

Put this into your parent view controller

override func scrollViewDidScroll(_ scrollView: UIScrollView) {

    scrollView.bounces = false
    super.scrollViewDidScroll(scrollView)
}

All 2 comments

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
  }
}
Was this page helpful?
0 / 5 - 0 ratings