我有一个自定义单元格,其中有两个文本字段。我有对象列表,我在每个单元格上填充它们。文本字段可以作为默认值进行编辑,但我想知道如何才能使第一行第一个文本字段不可编辑。
答案 0 :(得分:1)
cellForRowAtIndexPath
中检查indexPath
是0和0行。如果是,请将textField
s enabled
属性设置为NO
/ {{1 }}
答案 1 :(得分:1)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
MyCell *cell = (MyCell *)[tableView dequeueReusableCellWithIdentifier:@"myCell"];
cell.endabled = YES;
if(indexPath.section==0 && indexPath.row==0)
{
cell.customTextField.enabled = NO;
}
return cell;
}