Im using this code:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(_shrinkDidEnd:finished:contextInfo:)];
tblSimpleTable.frame = tableFrame;
messegeField.frame = messegeFrame;
[UIView commitAnimations];
Where messegeFrame and tableFrame are the new frames of this views. I hoped that this would of made the table and the messege field move together, but first the table moves and only then the messege field. Is there anyway of making them move together?
notice: the thing is that both of them are resizing but not in the same time
