J'ai UITableView
et j'essaie de le charger par défaut en mode édition. Le problème est que lorsque j'utilise cette ligne table.editing=TRUE;
mes rangs disparaissent, j'ai implémenté cette méthode :
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the specified item to be editable.
return YES;
}
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleDelete;
}
- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
return NO;
}
mais sans succès. Que dois-je faire ?