BFPaperCheckbox
BFPaperCheckbox copied to clipboard
Animation issue when in UIScrollView
When Checkbox is in scroll view animation twitches
You can test it in your example project by adding scroll view on top of everything and adding programmaticPaperCheckbox directly to it
Hi @Emailrus! Thanks for using BFPaperCheckBox!
Unfortunately, UIScrollView (and related classes like UITableView) often interfere with touch-based controls. Try setting the delaysContentTouches
property to NO
like this:
self.scrollView.delaysContentTouches = NO;
I've noticed this twitch in iOS 10.x both with and without UIScrollView and have yet to solve it :c I don't think it is related to only the UIScrollView, but hopefully making the above change will help.
Not helped. Do anyone have a solution for this?
it's working for me thanks you. @bfeher