UIView 弹出动画

时间:2023-03-09 23:00:36
UIView 弹出动画
// 展开动画
- (void)beginAnimations
{
CGContextRef context = UIGraphicsGetCurrentContext();
[UIView beginAnimations:nil context:context];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:0.6];//动画时间长度,单位秒,浮点数
myView.frame = CGRectMake(, , , );
[UIView commitAnimations];
} // 收起动画
- (void)endAnimations
{
CGContextRef context = UIGraphicsGetCurrentContext();
[UIView beginAnimations:nil context:context];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:0.6];//动画时间长度,单位秒,浮点数
myView.frame = CGRectMake(, -, , );
[UIView commitAnimations];
}