TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Simple superclass for custom tableview cells that works on convention and removes the need for a lot of code.
MyCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyCustomCell"];
if (cell == nil ) {
cell = [MyCustomCell create];
}
//config
return cell;