Skip to content

Instantly share code, notes, and snippets.

@kulte
Created December 8, 2012 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kulte/4242100 to your computer and use it in GitHub Desktop.
Save kulte/4242100 to your computer and use it in GitHub Desktop.
Example table view controller code for implementing KTEManagedTableViewCell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
KTEDoubleRainbowCell *cell = [KTEDoubleRainbowCell cellForTableView:tableView];
cell.mainLabel.text = [self.quotes objectAtIndex:indexPath.row];
return cell;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment