vote up 1 vote down star

Same as http://stackoverflow.com/questions/320078/adding-the-clear-button-to-an-iphone-uitextfield but that one is old. I tried

myUITextField.clearButtonMode = UITextFieldViewModeWhileEditing;

but nothing is happening. What could be preventing it?

flag

48% accept rate
Stupid questions, since you haven't had an answer and I don't have a general answer: 1) have you tried it on a brand new UITextField? 2) a brand new UITextField in a fresh project? – mikeh Mar 18 at 4:34
>since you haven't had an answer< My first time asking the question. Referenced question has a solution. Solution did not work for me. 1.) yes 2.) yes – 4thSpace Mar 18 at 4:58
I meant my questions were stupid -- sorry. Just wanted to make sure you'd done the basics, since I had nothing of more value to offer... – mikeh Mar 18 at 5:08
1  
Got the fix - textfield was in tablecell, which was loaded via nib. Needed to put the above code where the cell is created. – 4thSpace Mar 18 at 5:15
Cool! You should post the answer and mark it accepted ;) – mikeh Mar 18 at 5:25

1 Answer

vote up 1 vote down

In cellForRowAtIndex, the fix looks like this in my case:

cell = [tableView dequeueReusableCellWithIdentifier:@"CellNameIdentifier"];
	if (cell == nil) {
		[[NSBundle mainBundle] loadNibNamed:@"CellName" owner:self options:nil];
		cell = cellName;
		[cellName setAccessoryType:UITableViewCellAccessoryNone];
        //textfield in inside cellName
		textfield.clearButtonMode = UITextFieldViewModeWhileEditing;
	}
link|flag

Your Answer

Get an OpenID
or

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