[UIView beginAnimations:nil context:self];
[UIView setAnimationDelegate:self];
[UIView setAnimationDuration:0.4f];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
_tableView.frame = CGRectMake(10, 19, 300, 367);
[UIView commitAnimations];
小秋的家home |
[UIView beginAnimations:nil context:self]; [UIView setAnimationDelegate:self]; [UIView setAnimationDuration:0.4f]; [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; _tableView.frame = CGRectMake(10, 19, 300, 367); [UIView commitAnimations];
|