Open zakdances opened 12 years ago
A quick look at GMGridView.h
pops out:
// Reusable cells
- (GMGridViewCell *)dequeueReusableCell; // Should be called in GMGridView:cellForItemAtIndex: to reuse a cell
- (GMGridViewCell *)dequeueReusableCellWithIdentifier:(NSString *)identifier;
Previously, I was using
if (cell == nil) {
But now that I'm using GMGrid, there doesn't seem to be an equivalent method. How do I create a cell with a particular identifier?