AdvancedCollectionView
AdvancedCollectionView copied to clipboard
Techniques, improvements, and a Swift port derived from WWDC 2014 Session 232, "Advanced User Interfaces Using Collection View"
You have to wonder why Apple didn't just use Core Data for this sample. That gives composed data sources for free via entity inheritance. Could have saved them 1000 lines...
I'm often getting crash in `[AAPLLoadingProgress doneWithNewState:error:update:]_block_invoke + 8` I can't reproduce it myself but I see it on crash analytics tool. Is anyone affected by same issue?
I believe the following: _flags.targetRespondsToDidChange = [target respondsToSelector:@selector(stateWillChangeFrom:to:)]; was intended to be: _flags.targetRespondsToDidChange = [target respondsToSelector:@selector(stateDidChangeFrom:to:)];
Swift
I can't see any Swift source code. Where can I get Swift files?
Did anyone tried adding search bar on let's say APPLCatListViewController?
For example, when you enter Cat details, there are two segments: 1. Details, 2. Sightings Imagine sightings is some kind of grid. Can that be done? All I see is...
Do you have any intentions to maintain the swift port you've done? I'm thinking about using it in a project which would mean updating it for swift 2(.1) and maybe...