Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to refresh reusable cells in iOS 5?
    primarykey
    data
    text
    <p>I am building a custom cell in the storyboard with the identifier "TextCell". It is a plane cell, however by code i am adding to each cell a textfield because i can have an "n" number of cells so the user can insert text in each. My issue is that the textfields that i create seem to be creating themselves over and over again in top of the other. I can say this because i have a placeholder text and it gets darker and darker.</p> <p>I am using ARC as well. Please any insight that you can provide me can help me a lot.</p> <p>I am attaching the code of the function where i am adding the textfields to the cells:</p> <pre><code>UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"TextCell"]; //create text field inside cell and init it with the default settings UITextField * textHolder = [[UITextField alloc] initWithFrame:CGRectMake(18, 10, 300, 44)]; [textHolder setPlaceholder:[cellsText objectAtIndex:indexPath.row]]; //[textHolder setValue:[UIColor blackColor] forKeyPath:@"_placeholderLabel.textColor"]; [textHolder setFont:[UIFont fontWithName:@"HelveticaNeue-Regular" size:16]]; [textHolder setTextColor:[UIColor blackColor]]; [textHolder setTextAlignment:UITextAlignmentLeft]; textHolder.tag = FIELD_PREFIX + indexPath.row; [textHolder setDelegate:self]; [[NSBundle mainBundle] loadNibNamed:@"accessoryView" owner:self options:nil]; [textHolder setInputAccessoryView:accessoryView]; [cell addSubview:textHolder]; //set keyboard to type passwords [textHolder setSecureTextEntry:YES]; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload