Closed ashfurrow closed 12 years ago
@kolinkrewinkel Do you think you can address this? I'm a bit busy for a while.
Is there any update on this? Even if you point me in the right direction, I can take another look. The codebase is pretty hefty and I honestly don't even know where to start.
Ash,
Sorry for the radio silence; I was hoping that @kolinkrewinkel would take a look at this, since I believe he wrote the part of the code that deals with this.
If I can't get him to deal with this, I'll see if I can fix this for you on the weekend; I a little swamped right now.
In the meanwhile, do you think you could put together a test project?
Thanks for your patience, Jon
Sent from my iPhone
On Feb 2, 2012, at 11:23 AM, Ash Furrowreply@reply.github.com wrote:
Is there any update on this? Even if you point me in the right direction, I can take another look. The codebase is pretty hefty and I honestly don't even know where to start.
Reply to this email directly or view it on GitHub: https://github.com/kolinkrewinkel/KKGridView/issues/97#issuecomment-3784390
Thanks for getting back to me so quickly - I've downloaded the original source and will throw together a demo project this afternoon.
Thanks again, Ash
Or maybe the issue was already solved - I couldn't reproduce with the latest, updated my project's code, and it's working fine. Sorry for the bother.
No problem! Please let us know if the problem comes back up! Incidentally, the app you are working on looks sweet…
I've integrated the KKGridView into my project, but I'm having a problem with extra cells being added to the grid view, then abandoned as subviews. This isn't apparent in the example project because the background colours of the grid view and cells are both white, so they're effectively invisible. My grid view has a transparent background, on top of an image, so it's clear in this screenshot: What's worse is that the extra cells are actually on top of the cells underneath. After setting a breakpoint in _layoutVisibleCells, I can produce this output in gdb:
But when I examine the subviews, I get the following:
The issue appears to be using an NSFetchedResultsController:
If I changed the code for dealing with inserted rows to just
reloadData
, everything works fine. Could someone please advise?