У меня возникли странные проблемы с моим UITableView.У меня есть GroupView TableView с 1 строкой на раздел.В каждой строке есть текстовое поле.Когда меня не заставляют прокручивать, все отображается правильно.
Но если мне нужно прокрутить, ранее спрятанные ячейки испортились.они содержат текстовое поле, но есть много текстовых меток, наложенных друг на друга.
Ячейка http://dcsl.info/b/Untitled.png Любой совет?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
if(indexPath.section < [sectionArray count]) {
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(20, 10,580, 31)];
textField.tag = indexPath.section + 22;
textField.autocorrectionType = UITextAutocorrectionTypeNo;
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
textField.delegate = self;
textField.text = [item.rechnerValues objectAtIndex:indexPath.section+1];
[cell.contentView addSubview:textField];
}
return cell;
}