Evadne Wu

Results 97 comments of Evadne Wu

Check out [https://github.com/evadne/AQGridView-Issue-171-Sample-1](https://github.com/evadne/AQGridView-Issue-171-Sample-1). It fixes these things: - Uses `$PROJECT_DIR` when describing the header search paths. It converts to the directory holding the Xcode project. More info on this StackOverflow...

Take a look at Git history in that sample project as that would be the best I could do as of now. - * On Oct 7, 2012, at 21:12,...

Override its -layoutSubview. Some may say that doing things in -scrollViewDidScroll: is fine, but it might give artifacts when swiped rapidly… so just subclass. :) On Jan 18, 2012, at...

Just take a look at the contentOffset, then you know where to move your header view to. Do this after calling super so your code always run after stuff has...

Can you post the code? On Jan 21, 2012, at 5:32 AM, BBuff wrote: > I played around with the contentOffset in layoutSubviews but then the searchbar was hidden but...

Not quite, but I digress. Realized that I might have misunderstood what you mean by “scroll down”. This should make your header view _always_ appear: ``` - (void) layoutSubviews {...

Um, guess I am fabulously wrong. If the Grid View actually already makes sure that your header view is always at the top of the visible rect, then you move...

So I just checked out the source and could verify that the gridHeaderView actually “sticks there”, meaning whenever the grid view is scrolled the header view scrolls with it. It...

Doh. That means the header view is initially not shown, but pulling the entire list downwards reveals it. Usually, you can just use the `gridHeaderView` property, but then with an...

Not using ARC is no longer supported. Sorry about that. - * On Sep 20, 2012, at 3:22, Tian [email protected] wrote: I am not using ARC and ran into this...