2

所以我创建了一个函数:

-(void)checkCount:(UITableView *)tableView isIndexPathChecked:(NSIndexPath *)indexPath{
NSString *name = [[NSString alloc] init];
UITableViewCell *investigatedCell = [tableView cellForRowAtIndexPath:indexPath];
if(investigatedCell.accessoryType ==UITableViewCellAccessoryCheckmark)
    name = investigatedCell.textLabel.text;
[checkedRows addObject: name];
}

每次尝试从另一个方法中调用此方法时,我都会遇到错误。什么是正确的语法?谢谢你。

4

1 回答 1

1

我相信您看到的错误是因为您的公共头文件中不存在方法调用。尝试添加

-(void)checkCount:(UITableView *)tableView isIndexPathChecked:(NSIndexPath *)indexPath;

到您的 .h 文件。

您可能还想仔细检查您的拼写,并确保您将方法调用发送到正确的对象。我猜是自己。

UITableView *myTable = pointer_to_tableView_instance;
NSIndexPath *indexPath = pointer_to_indexPath_to_check;
[self checkCount:myTable isIndexPathChecked:indexPath];
NSLog(@"%i",checkedRows.count);
于 2012-06-27T20:35:35.840 回答