Добавьте UITextField к вашей UITableViewCell.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
/* your standard UITableView setup code */
UITextField *myTextField = [[UITextField alloc] initWithFrame: CGRectMake(60, 12.7, 250, 20)];
/* any other textField code you want to add */
[cell addSubview: customTextField];
return cell;
}
Внизу списка вы найдете TableView с сохранением на основе файлов , который демонстрирует, каксделать это.