Skip to content

Instantly share code, notes, and snippets.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
MyCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([MyCustomCell class])];
[cell populateWithTitle:self.data[indexPath.row]];
return cell;
}