I am working on an iPad app with a table view with standard cells, when a custom cell is selected, it should expand and load a custom nib file. This it does fine, for the first selection.
If I select a standard cell it loads the nib fine and if I select it again it goes back to normal, upon the second loading, it throws a EXC_BAD_ACCESS error (I don't think I will ever get xcodes errors, seem to be the most abstract).
My code is below and the line is when it dequeues the cell for reuse, 3rd line:
if([listCells objectAtIndex:indexPath.row] == @"open") {
NSLog(@"Loading open cell at %i", indexPath.row);
CustomMessageCell *cell = [tableView dequeueReusableCellWithIdentifier:@"CustomMessageCell"];
//Loads the nib file and grabs the last object, presumably the table cell, as it is the only object in the file.
if(cell==nil) {
cell = [[[[NSBundle mainBundle] loadNibNamed:@"CustomMessageCell" owner:self options:nil] lastObject] autorelease];
}
UILabel *message = (UILabel *) [cell viewWithTag:1];
UIButton *approve = (UIButton *)[cell viewWithTag:4];
message.text = @"Test";
return cell;
Any help is greatly appreciated, thanks!