Проверка выделения ячеек в методе cellForRowAtIndexPath.Неправильное выделение / или освобождение пользовательской ячейки создаст такую проблему.Я сталкивался с этим раньше.
Вы можете попробовать подобный код,
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
//your custom cell class object
customCell *cell= (customCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell==nil)
{
cell=[[[customCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
//Here you can add your textfield. You can give tags to individual textfield to access them in future.
}