Estoy intentando copiar NSMutableArray
a otro pero no me muestra nada en la UITableView
:Copia NSMutableArray a otro
NSMutableArray *objectsToAdd= [[NSMutableArray alloc] initWithObjects:@"one",@"two"];
NSMutableArray *myArray = [[NSMutableArray alloc] initWithObjects:objectsToAdd,nil];
NSMutableArray *list = [[NSMutableArray alloc] init];
[self.list addObjectsFromArray:myArray];
Nada aparecer! ¿Qué está mal?
Bloquea mi aplicación porque no tengo nulo en mi NSMutableArray
¿cómo puedo agregar nil a ella? addobject:nil
no funciona se bloquea la aplicación:
static NSString * DisclosureButtonCellIdentifier =
@"DisclosureButtonCellIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:
DisclosureButtonCellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier: DisclosureButtonCellIdentifier]
autorelease];
}
NSUInteger row = [indexPath row];
NSString *rowString =nil;
rowString = [list objectAtIndex:row];
cell.textLabel.text = rowString;
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
[rowString release];
return cell;
por qué algo se debe mostrar? publique su cellForRowAtIndexPath: código del método – Morion
¿Cómo puedo actualizar nil a NSMutableArray con addObject? Bloquea mi aplicación en cellForRowAtIndexPath – stefanosn