Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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; 
}
share|improve this question
What do you mean by the cells positions changes? Do you mean the table views content offset changed? – 0x7fffffff Sep 8 '12 at 5:51
no cell position change...4 ex. if i click on cell no 6 then keyboard is display , when i click on done button then keyboard is remove and cell no-6 is placed on cell no-7. i mean swap two cell. – The King Sep 8 '12 at 6:12

1 Answer

A quick guess is that is have to do with:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:textField.tag inSection:0];
[self.tblCustomer scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionMiddle animated:YES];

Try to edit it to this:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:textField.tag inSection:0];
[self.tblCustomer scrollToRowAtIndexPath:[indexPath row] atScrollPosition:UITableViewScrollPositionMiddle animated:YES];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.