Evadne Wu
Evadne Wu
It should work without issues. Cases where it does not work will be considered high priority bugs. On Sep 20, 2012, at 11:17, Clay Bridges [email protected] wrote: @evadne https://github.com/evadne Are...
If there is only one section (no section key path), the row index can be used as the grid index. Methinks. On Dec 3, 2011, at 3:34 AM, Anthony Wong...
Post it. :) On Dec 3, 2011, at 5:36 AM, Anthony Wong [email protected] wrote: > So creating an indexSet using [NSIndexSet indexSetWithInt[indexPath row]], kinda works? > > I'm getting error...
Thanks! That sounds like a bug, and the line of code you mentioned is probably good. We should fix the underlying issue that causes `backgroundRect` to contain an invalid value....
View tiling / recycling is something that can be trivially done from the calling class. You’ll observe -scrollViewDidScroll: and tile your background views, using contentOffset and the bounds to determine...
Can it be made into a magic view that automatically works when put into any UIScrollView? I’d push for that, on a separate repository. On Nov 6, 2012, at 10:37...
Guess we can use -didMoveToSuperview:, then KVO the contentOffset and bounds or worse use CADisplayLink and poll the presentationLayer. On Nov 6, 2012, at 10:45 AM, Jim Dovey [email protected] wrote:...
I wrote it. Tested a few combinations, view dequeueing, reusing, and stretching all seem to work well. Code: https://github.com/evadne/RATilingBackgroundView Sample app: https://github.com/evadne/RATilingBackgroundView-Sample
Probably need a way to tell the tiling background view if it should continue tiling outside the bounds! It should be a single flag…. Up for grabs? - * On...
Thanks a bunch. That is interesting: I expected that overriding the method which gives you tile rects might suffice — if you hide something, there is still a small performance...