我用这个方法设置了可编辑的布尔标志
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return YES if you want the specified item to be editable.
if (indexPath.row<[requiredFields count]) {
if ([[requiredFields objectAtIndex:indexPath.row] isEqualToString:@"Required"]) {
return NO;
}
}
return YES;
}
这意味着一些细胞是可编辑的,有些则不是。但是当我点击“继续”时,我想检查不可编辑的单元格是否为空。所以在循环中我得到像这样的单元格
ShtoFushaTableViewCell * tempCell = [shtoFushaTableView cellForRowAtIndexPath:[NSIndexPath indexPathForItem:i inSection:0]];
现在使用此tempCell
如何检查它是否可编辑?