まだまだありますUITextField
がUITableViewCell
、下にスクロールして戻るUITextField
と空です。自動リセットしない方法はありますか?
これはコードです:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cella"];
if(cell==nil){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cella"];
}
cell.textLabel.text = [dati objectAtIndex:indexPath.row];
UITextField *testo = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 150, 31)];
testo.borderStyle = UITextBorderStyleRoundedRect;
testo.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
testo.placeholder = @"Inserisci del testo..";
testo.delegate = self;
cell.accessoryView = testo;
return cell;
}