4

UITableViewCell2つのカスタムがUIButton追加されたカスタムがあります。これらのボタンの1つで、内からセル行を削除できるようにしたいと思いますmyMethod()

メソッドは、次のaddTarget:@selector(myMethod:)範囲内で呼び出されますcellForRowAtIndexPath

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    ...
    cell.acceptButton.tag = indexPath.row;
    [cell.contentView addSubview:acceptButton];

    [cell.acceptButton addTarget:self action:@selector(myMethod:) forControlEvents:UIControlEventTouchUpInside];
}

これは機能し、実際のメソッドは正常に呼び出されます。

- (void)myMethod:(id)sender {
   NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow]; //works fine (correct indexPath is returned)
   friendsArray removeObjectAtIndex:indexPath.row]; //works fine (correct indexPath.row is returned and the object is removed from the array)
   [tv deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; //throws error below
}

エラー:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSArray initWithObjects:count:]: attempt to insert nil object at objects[0]'
*** Call stack at first throw:
(
 0   CoreFoundation                      0x020a9be9 __exceptionPreprocess + 185
 1   libobjc.A.dylib                     0x021fe5c2 objc_exception_throw + 47
 2   CoreFoundation                      0x01ff3ffe -[__NSPlaceholderArray initWithObjects:count:] + 494
 3   CoreFoundation                      0x020158a3 +[NSArray arrayWithObject:] + 67
 4   MyApp                          0x00071d1b -[FriendListViewController myMethod:] + 417
 5   MyApp                          0x00020b87 -[MBProgressHUD launchExecution] + 151
 6   Foundation                          0x004a3d4c -[NSThread main] + 81
 7   Foundation                          0x004a3cd8 __NSThread__main__ + 1387
 8   libSystem.B.dylib                   0x9461f85d _pthread_start + 345
 9   libSystem.B.dylib                   0x9461f6e2 thread_start + 34

通常、セル内の行を削除するときにこれを行います。これは正常に機能します。

- (void)tableView:(UITableView *)tableview commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
 if(editingStyle == UITableViewCellEditingStyleDelete) {
  //Delete the object from the friends array and the table.
  [friendsArray removeObjectAtIndex:indexPath.row];
  [self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
 }
}
4

2 に答える 2

0

すべてのセルまたは複数のセルでuibuttonを使用していて、セルを見つけるための最良のオプションと同じセレクターを設定している場合は、タグを使用することです。

i did this when i want to change the color of my accessory buttons to green (i dont know if apple will allow this or not but just something i want to try). so made a custom button and changed its background image to green and then in the accessoryView i added that button. And it worked just fine. You need to set the tag in tableView:cellForRowAtIndexPath: method

于 2011-01-12T06:45:35.650 に答える
0

The problem is in array initialization, not row deletion. Try to debug this method one more time and check if indexPath could be nil.

于 2011-01-12T06:52:19.157 に答える