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

kd7qis

macrumors newbie
Original poster
Aug 7, 2008
2
0
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...
 

tacoman667

macrumors regular
Mar 27, 2008
143
0
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.
 

detz

macrumors 65816
Jun 29, 2007
1,051
0
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.