Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

kd7qis

macrumors newbie
Original poster
Does anybody know how I can make a UITableViewCell act like a text input box? I cannot for the life of me figure it out...
 
You will probably need to put a UITextField into the cell's contentView. Do this either at cellForRowAtIndex or the cell selected action method for dynamically inserting the UITextView when someone touches the cell to select it.
 
Yeah, cells are UIView so you can do anything you can do to a view.

[cell addSubview:[[UITextField alloc] initWithFrame:CGRectMake(0,0,100,30)]];

for example.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.