I am trying to use the new StoryBoard Xcode 4.2 feature and keep getting this error when using a table view with a custom cell.
cell reuse indentifier in nib (Cell) does not match the identifier used to register the nib (ThisCell)
I set the class of my custom cell to my custom UITableViewCell class and set the identifier to "ThisCell" in IB.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"ThisCell";
I have no idea where "Cell" comes from. Any ideas? I tried loading a custom cell into another project, and it seems to be working fine, I just can't find the documentation for this error to find out what I messed up in the current project.
thanks
source share