I have a normal tableview of size 30 cells and it all breaks apart when I use cell above 25 I pushview and when I return it terminates, if there are no more than 25 cells all is perfect??? why?? help help
here is what it look like
[__NSArrayM frameLength]: unrecognized selector sent to instance 0x4b659c0
- (UITableViewCell *)tableView

UITableView *)tableView cellForRowAtIndexPath

NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"bodyCellIdentifier";
NSMutableArray *podnaslovi=[[NSMutableArray alloc]init];
NSMutableArray *naslovi = [[NSMutableArray alloc] init];
[naslovi addObject:@"B"];
... and so on for 29 more
[podnaslovi addObject:@"CCC"];
.... and other 29
UITableViewCell *cell = [tableview dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
// cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
cell.textLabel.text = [naslovi objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [podnaslovi objectAtIndex:indexPath.row];
[naslovi release];
[podnaslovi release];
return cell;