Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This topic has been discussed several times and I am aware of how to create a UITextField inside of a UITableViewCell.

I know that with a UITableViewController that is using prototype cells, I have to create a custom sub class of UITableViewCell and then hook up UITextField I created through IB into the subclass.

Why is it with using static table view cells, I have to programatically create the UITextField? I could find no way to use the IB to create a UITextField for my static table view cells.

It seems that interface builder is useless when trying to drag and create a UITextField when working with static table view cells. Does anyone know why?

I hate having to resort to code like this for static cells when IB would do it for me with prototype cells:

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
        UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0, -2, 650, 18)];
        textField.placeholder = @"Enter Text";
        [textField setFont:[UIFont fontWithName:@"System" size:16]];
        textField.backgroundColor = [UIColor clearColor];
        textField.delegate = self;
        textField.highlighted = NO;
        cell.accessoryView = textField;
    }
share|improve this question
4  
why not you make use of custom cell. – Leena Dec 4 '12 at 8:27
Argghh, this was my problem. I was dequeue-ing with static cells! Thanks Leena.: stackoverflow.com/questions/9993669/… – AbuZubair Dec 4 '12 at 17:48

1 Answer

you can add textfild like

if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2                                                                                                   reuseIdentifier:CellIdentifier] autorelease];

        cell.selectionStyle = UITableViewCellSelectionStyleNone;
        cell.accessoryType = UITableViewCellAccessoryNone;
        cell.editing = YES;

        UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(120, 13, 375, 30)];
        textfield.tag = 1;
        textField.adjustsFontSizeToFitWidth = NO;
        textField.font = [UIFont fontWithName:@"Helvetica" size:14.0];
        textField.textColor = [UIColor darkGrayColor];
        textField.returnKeyType = UIReturnKeyDone;
        textField.backgroundColor = [UIColor clearColor];
        textField.autocorrectionType = UITextAutocorrectionTypeNo; 
        textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
        textField.textAlignment = UITextAlignmentLeft;
        textField.clearButtonMode = UITextFieldViewModeNever;
        textField.delegate = self;
        [textField setEnabled: YES];

        [cell.contentView addSubview:textField];
        [textField release];
}

Got solution from UITextField in UITableView cell is returning null .

share|improve this answer
I already know how to create a UITextField inside a table view cell. I am asking why the methodology of creating a UITextField is so different between a prototype cell and a static cell. I can use the IB with prototype cells, but I can't with static cells. My question is why this is the case. – AbuZubair Dec 4 '12 at 8:11
@AbuZubair you must need to create Custome cell as par leena's Comment its very easy and useful – Nitin Gohel Dec 4 '12 at 8:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.