I am just wondering is there a way to have two different cell identifiers in one TableViewController Class? E.g this is my first cell identifier code...
static NSString *CellIdentifier = @"TableCell";
TableCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
I'm trying to create another cell Identifier, however whenever I do I get an error saying I have a duplicate of code, even when I change the name of the cell identifier. Any help would be great!