In CPFQueryCollectionViewController I had to change @property NSArray *objects; To @property (nonatomic, retain) NSArray *objects; To stop the collection view from crashing (bad access error)
In CPFQueryCollectionViewController
I had to change
@Property NSArray *objects;
To
@Property (nonatomic, retain) NSArray *objects;
To stop the collection view from crashing (bad access error)