vote up 2 vote down star
2

Hi!

I'm trying to do that for a couple of days now, and after reading tons of messages of people trying to do that too, I'm still unable to have a fully working UITextField in some of my UITableViewCells, just like in this example: http://img231.imageshack.us/img231/4858/picture4za3.png

Either I have the form working but the text is not visible (although I set its color to blue), the keyboard goes on the field when I click on it and I haven't been able to correctly implement the keyboard events. I tried with a bunch of examples from Apple (mainly UICatalog, where there is a kinda similar control) but it's still not working correctly.

Can somebody help me (and all the people trying to realize this control) and post a simple implementation of a UITextField in a UITableViewCell, that works fine?

Thank you very much.

flag
I've had it working. But only for a few fields. Are you running into problems when you have several fields in the table or just one? – PEZ Jan 3 at 16:04
I just need it working for 2 fields... It's not working right now, even if I try for one field. Can you post your implementation that is working? Thank you PEZ! – Mathieu Jan 3 at 16:08
Did you try the EditableDetailView sample? Writing the question here too since you can't comment on answers yet. – PEZ Jan 3 at 16:18

2 Answers

vote up 1 vote down

This should not be difficult. When creating a cell for your table, add a UITextField object to the cell's content view

UITextField *txtField = [[UITextField alloc] initWithFrame....] ... [cell.contentView addSubview:txtField]

Set the delegate of the UITextField as self (ie your viewcontroller) Give a tag to the text field so you can identify which textfield was edited in your delegate methods. The keyboard should pop up when the user taps the text field. I got it working like this. Hope it helps.

link|flag
vote up 0 vote down

I said had it working. =) Anyway I used the EditableDetailView sample. I think the EditCell class might be the key. Did you try that sample?

link|flag
What are you doing now? If it's not working anymore? I tried that example yes, but it's not the behavior I'm looking for. I'm going to try again and see how they do to integrate the form in the cell. – Mathieu Jan 3 at 16:20
I'm using a sub view instead. Let me know if EditCell.m is not your answer. – PEZ Jan 3 at 16:26
No EditCell is not really what I'd like to reproduce (which is more like the screenshot in my question). I'm also using a subview (UITextField) that I add to my UITableViewCell. What is more problematic is all the keyboard events to make the view scroll, not have the keyboard hiding the field. – Mathieu Jan 3 at 16:46
I see, then I think your case is similar to the one I never solved. – PEZ Jan 3 at 17:39

Your Answer

Get an OpenID
or

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