Estoy intentando completar una vista única con varias secciones. Este es mi código:Problemas de UITableView con cellForRowAtIndexPath
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
case 1:
[[cell textLabel] setText:[usersTeachers objectAtIndex:(indexPath.row+1)]];
return cell;
break;
consigo este error cuando intento cargar la vista:
2009-12-28 21:09:48.380 FSS[2046:207] *** Assertion failure in -[UITableView _createPreparedCellForGlobalRow:withIndexPath:], /SourceCache/UIKit/UIKit-984.38/UITableView.m:4709
2009-12-28 21:09:48.381 FSS[2046:207] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:'
El orden de batalla en que los registros de índice como una cadena legítima, pero no devuelve la celda correctamente . Por lo tanto, no se carga más allá de este punto. Por favor ayuda.
entiendo. Tengo configurada una instrucción switch completa. Solo usé el primero para dar un ejemplo de lo que estaba sucediendo. No ejecuta otro caso antes de que proporcione el error. –