自定义单元格文本字段不可编辑

时间:2015-12-09 19:16:54

标签: ios textfield

我有一个自定义单元格,其中有两个文本字段。我有对象列表,我在每个单元格上填充它们。文本字段可以作为默认值进行编辑,但我想知道如何才能使第一行第一个文本字段不可编辑。

2 个答案:

答案 0 :(得分:1)

<{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;
}