I have a UITableView and a number of .xibs with different table view styles. Each .xib has it's own class and is registered with a reuse identifier based on the section. For example: In my viewDidLoad I have the following:
UINib *cellStyleOne = [UINib nibWithNibName:@"CellStyleOne" bundle:nil];
[self.tableView registerNib:cellStyleOne forCellReuseIdentifier:@"CellStyleOne"];
UINib *cellStyleTwo = [UINib nibWithNibName:@"CellStyleTwo" bundle:nil];
[self.tableView registerNib:cellStyleTwo forCellReuseIdentifier:@"CellStyleTwo"];
UINib *cellStyleThree = [UINib nibWithNibName:@"CellStyleThree" bundle:nil];
[self.tableView registerNib:cellStyleThree forCellReuseIdentifier:@"CellStyleThree"];
How would I assign each one of these reuse identifiers to a section of cells in my cellForRowAtIndexPath without causing any issues?
Thanks.