eoghain / RBCollectionViewInfoFolderLayout

A UICollectionViewLayout that displays a folder of extra information below your items.
MIT License
92 stars 10 forks source link

Cells animate open but folder view just pops out/in #4

Closed shrishaster closed 10 years ago

shrishaster commented 10 years ago

I have been doing customizations to the project but now the folder view just pops in and out. I want to get it back to animating.

What should I do to fix it?

eoghain commented 10 years ago

Without code I have no idea what you've changed to make this stop working. However, you shouldn't need to change anything in the Layout class itself you should only be making changes in your delegate methods, and setup. Once you start working inside the Layout class you'll really need to know what you are doing and why. The whole concept of the layout class is that it's self contained and usable by anyone who wants the folder functionality. It's not really built to be customized per usage.

If you feel it's missing some features please let me know, or fork it and send me a pull request. But again if it's just configuring it to work with your application it should basically be a black box to you.

shrishaster commented 10 years ago

Hmm okay.

Let me look into it a bit further and get back to you.