create an NSMutableArray that at each position contains an NSString object that corresponds to each cell.
when you configure + to show each cell in - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath , set the text UITextField to the string in the array at indexPath.row .
when editing a UITextField insert / update an NSString object at the current position of indexPath.row in the array
source share