AlanQuatermain / AQGridView

A grid view for iPhone/iPad, designed to look similar to NSCollectionView.
http://quatermain.tumblr.com/
BSD 3-Clause "New" or "Revised" License
2.37k stars 450 forks source link

Fixed Horizontal scroll when more than one row present #168

Closed gabrielrinaldi closed 12 years ago

gabrielrinaldi commented 12 years ago

Solution based on @RadhikaS work

pzmudzinski commented 12 years ago

When will it be included? Extremely needed!

gabrielrinaldi commented 12 years ago

There are some collateral damage with this. This breaks a lot of things in the app. You can try using this branch, but I've seen some odd behaviors with this.

pzmudzinski commented 12 years ago

Shoot... so how can I get horizontal scrolling working? Is anyone working on that?

gabrielrinaldi commented 12 years ago

I don't think so... If you are only using in horizontal mode you can try this branch.

evadne commented 12 years ago

I am back-logged on bringing the fix up to standard.

One hack you might consider is to apply a rotation transform and a flip transform to the container view, then do the same thing to the cells.

On Oct 7, 2012, at 11:00, Gabriel Rinaldi notifications@github.com wrote:

I don't think so...

— Reply to this email directly or view it on GitHubhttps://github.com/AlanQuatermain/AQGridView/pull/168#issuecomment-9210459.

pzmudzinski commented 12 years ago

I've tried this fix and didn't see any issues, but I am using only horizontal scrolling. One problem might be that index is counted column-by-column not row-by-row which is really confusing in horizontal layout: 1 3... 2 4...

Anyway, I have to say that it's easier to implement own horizontal grid view...