Champs de text dans un cell
abc88
Membre
Bonjour je cherche à avoir un champs de text dans la 4eme ligne d'un tableView.
J'ai fait ceci mais ça n'a pas l'aire de marche
J'ai fait ceci mais ça n'a pas l'aire de marche
<br />
if ([self.tab1 isEqual: tableView ]){<br />
<br />
<br />
<br />
<br />
if(indexPath.section == 0){<br />
if ( indexPath.row == 4 ){<br />
<br />
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(8,4,284,25)];<br />
textField.delegate = self;<br />
textField.returnKeyType = UIReturnKeyDone;<br />
textField.backgroundColor = [UIColor orangeColor];<br />
[cell.contentView addSubview:textField];<br />
[textField release];<br />
}<br />
else {<br />
cell.mylabel.text = [dataLigne objectAtIndex:indexPath.row];<br />
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;<br />
}<br />
}<br />
Connectez-vous ou Inscrivez-vous pour répondre.
Réponses