I added UITextField in UITableViewCell. My TableView have 8 rows. when i resize or change size of UITableView then position of cell has been changed.
so, how can i privent changing of cell position ?
my code is here,
- (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];
cell.selectionStyle=UITableViewCellSelectionStyleNone;
self.cellTxt=[[UITextField alloc] initWithFrame:CGRectMake(15,10,cell.frame.size.width,cell.frame.size.height)];
self.cellTxt.returnKeyType=UIReturnKeyDone;
self.cellTxt.delegate=self;
self.cellTxt.tag=indexPath.row;
self.cellTxt.placeholder=[NSString stringWithFormat:@"Enter %@ ",[self.plcHolderArr objectAtIndex:indexPath.row]];
[cell addSubview:self.cellTxt];
}
return cell;
}
When user taps on UITextField (self.cellTxt) then call following Delegate methods.
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:textField.tag inSection:0];
[self.tblCustomer scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionMiddle animated:YES];
// change size of UITableView
self.tblCustomer.frame = CGRectMake(0, 0, 320,190);
return YES;
}
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
self.tblCustomer.frame=CGRectMake(0,0,320,460);
[textField resignFirstResponder];
self.string=[textField text];
[self.stringArr addObject:self.string];
return YES;
}

swap two cell.– The King Sep 8 '12 at 6:12