Para dar las gracias debes entrar o registrarte en el foro
#pragma mark - Metodos de la lista principal
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [anuncios count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *celda = [tableView dequeueReusableCellWithIdentifier:@"celda"];
celda.textLabel.text = [anuncios objectAtIndex:indexPath.row];
return celda;
}
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *celda = [tableView cellForRowAtIndexPath:indexPath];
if (editingStyle == UITableViewCellEditingStyleDelete) {
NSLog(@"Codigo que elimina esta barra");
}
[anuncios removeObjectAtIndex:indexPath.row];
[tableView reloadData];
}
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
}