Before submitting issues ...
When submitting issues, please provide the following information to help maintainers to fix the problem faster:
If in the ButtonBarPagerTabStripViewController you set containerView.scrollEnabled = false, it will scroll vertically but won't do it horizontally.
I was getting error because containerView was nil in the ViewDidLoad(), in order to over come this I have moved "containerView.isScrollEnabled = false" to my api calling thread, so now its working.
I am also having same issue, I have added containerView from storyboard.
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
containerView.isScrollEnabled = false
}
Most helpful comment
If in the ButtonBarPagerTabStripViewController you set
containerView.scrollEnabled = false, it will scroll vertically but won't do it horizontally.