-
Notifications
You must be signed in to change notification settings - Fork 328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UICollectionView scroll no longer works under iOS 9.0b #92
Comments
…iOS 9 and higher Fixes lxcid#92.
@tonyarnold I found out the root cause of this. It seems as though the gesture recognizers are getting added to the same collection view twice. This causes the My fix was to add a check that only adds the custom gestures once. |
@adamcumiskey Thanks this fix worked for me too. |
Thank you @adamcumiskey . Solved the recent problem that I have been having too. |
Using
LXReorderableCollectionViewFlowLayout
with aUICollectionView
under iOS 9.0b (currently beta 5) causes scrolling of the collection view to be disabled. I've tried disabling the new iOS 9 rearrangement API like so:However this has no effect. I'll do some digging over the weekend, but given that I still need to support iOS 8.x clients, I can't afford to lose
LXReorderableCollectionViewFlowLayout
just yet.The text was updated successfully, but these errors were encountered: