所以我创建了一个函数:
-(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];
}
每次尝试从另一个方法中调用此方法时,我都会遇到错误。什么是正确的语法?谢谢你。