K kd7qis macrumors newbie Original poster Aug 7, 2008 #1 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...
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...
T tacoman667 macrumors regular Aug 8, 2008 #2 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.
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.
D detz macrumors 65816 Aug 8, 2008 #3 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.
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.