xmartlabs / XLPagerTabStrip

Android PagerTabStrip for iOS.
MIT License
6.97k stars 1.33k forks source link

Remove Swipe Gesture - SegmentedControlPageTabStrip #799

Open networkharry04 opened 4 years ago

networkharry04 commented 4 years ago

I am working with SegmentedPagerTabStripViewController. Can we remove swipe gesture and move to different view controller by clicking the segment? If I declare an open class for UISegementedControl to stop the swipe gesture, it crashes the application in iOS. I used custom class

class NoSwipeSegmentedControl: UISegmentedControl {

override func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
    return true
}

}