BFPaperCheckbox icon indicating copy to clipboard operation
BFPaperCheckbox copied to clipboard

Animation issue when in UIScrollView

Open Emailrus opened this issue 8 years ago • 3 comments

When Checkbox is in scroll view animation twitches screencast

You can test it in your example project by adding scroll view on top of everything and adding programmaticPaperCheckbox directly to it

Emailrus avatar Feb 01 '17 12:02 Emailrus

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.

bfeher avatar Feb 02 '17 06:02 bfeher

Not helped. Do anyone have a solution for this?

vplusm avatar Jun 19 '17 18:06 vplusm

it's working for me thanks you. @bfeher

patelhari avatar Feb 14 '18 05:02 patelhari