读书人

UIView 用法示范

发布时间: 2012-08-22 09:50:34 作者: rapoo

UIView 用法示例

? [UIView beginAnimations:nil context:nil];
??[UIView setAnimationDelay:0.8];
??[UIView setAnimationDuration:6.5];
??[UIView setAnimationCurve:UIViewAnimationCurveLinear];
??[UIView setAnimationWillStartSelector:@selector(yourmethod)];
??[UIView setAnimationDidStopSelector:@selector(yourmethod)];
??[UIView setAnimationDelegate:self];
??[_backgroundImage setCenter:CGPointMake(20,650)];
???[UIView commitAnimations];

读书人网 >移动开发

热点推荐