Удалить строку в сгруппированном табличном представлении - PullRequest
2 голосов
/ 28 июня 2011

Ну, что-то не так, но я не знаю что. Я не могу удалить строку. когда мой табличный вид попадает в режим редактирования, появляются красные знаки минуса рядом со всеми строками. нажмите на них, чтобы появилась кнопка удаления в строке, когда я касаюсь ее, она становится (темно-красной) и ничего не происходит.

вот мой код (не все) + у меня нет ошибок и предупреждений при компиляции и во время выполнения ...

- (void)viewDidLoad {

    [super viewDidLoad];

    // initialize singleton.
    appDelegate = (ExchangedAppDelegate *)[[UIApplication sharedApplication]delegate];

    // get banks from settings.plist
    NSString *tempPath = [self getPathOfSettingsPlist];

    appDelegate.banks = [[NSArray alloc]initWithContentsOfFile:tempPath];

    navigationItem.rightBarButtonItem = self.editButtonItem;

    backButton = [[UIBarButtonItem alloc]initWithTitle:@"Back" style:UIBarButtonSystemItemCancel target:self action:@selector(closeSettingsView)];

    navigationItem.leftBarButtonItem = backButton;

}


- (void)setEditing:(BOOL)editing animated:(BOOL)animated {

    [super setEditing:editing animated:animated];

    [banksTableView setEditing:editing animated:animated];

    if (editing) {

        addButton = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addBankFromList)];

        navigationItem.leftBarButtonItem = addButton;

    } else {


        navigationItem.leftBarButtonItem = backButton;

        NSString *tempPath = [self getPathOfSettingsPlist];

        self.picker.hidden = YES;

        [appDelegate.banks writeToFile:tempPath atomically:YES];
    }

}



- (void)addBankFromList {

    // not interesting

}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return [appDelegate.banks count];
}


// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"BanksTableCell";

    indexForPath = indexPath;

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {      

        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease];

        cell.selectionStyle = UITableViewCellEditingStyleNone;
    }

    cell.textLabel.text = [appDelegate.banks objectAtIndex:indexPath.row];

    return cell;
}


// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle) editingStyle: forRowAtIndexPath:(NSIndexPath *)indexPath {

     if (editingStyle == UITableViewCellEditingStyleDelete) {

         // Delete the row from the data source
         [appDelegate.banks removeObjectAtIndex:indexPath.row];

         [banksTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationRight];

         [banksTableView reloadData];
     } 
} 

//// Override to support rearranging the table view.
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
    NSString *temp = [appDelegate.banks objectAtIndex:fromIndexPath.row];
    [appDelegate.banks removeObjectAtIndex:fromIndexPath.row];
    [appDelegate.banks insertObject:temp atIndex:toIndexPath.row];
} 

1 Ответ

1 голос
/ 28 июня 2011

На самом деле вы добавили дополнительное двоеточие (":") в имя метода commitEditingStyle:. Добавление лишнего двоеточия сделало этот метод совершенно другим методом. Итак, ваш контроллер представления подумал, что вы не реализовали метод commitEditingStyle: и ничего не сделали, пока вы редактировали представление таблицы.

Просто удалите двоеточие (":") после editingStyle в методе commitEditingStyle:. Это решит проблему. Эта строка должна выглядеть так:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle) editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...