首页 > 代码库 > Xcode--创建动画
Xcode--创建动画
1.动画(头部-开始动画)[UIView beginAnimations:nil context:nil];2.设置动画的执行时间[UIView setAnimationDuration:1.0];3.向上移动// CGPoint tempCenter = _btn.center;CGRect tempFrame = _btn.frame;tempFrame.origin.y -= 50;_btn.frame = tempFrame; 3.左旋转45° (transfrom 变形,改造)//_btn.transfrom = CGAffineTransformMakeROtation(- M_PI_4);_btn.transform = CGAffineTransformRotate(_btn.transform,- M_PI_4);4.变大//_btn.transform = CGAffineTransformMakeScale(1.2, 1.2);_btn.transform = CGAffineTransformScale(_btn.transform, 1.2, 1.2);5.透明度 (0-1)_ben.alpha = 1;6.动画(尾巴-提交动画-执行动画)[UIView commitAnimations];//清空之前所有的形变状态(消除以前的旋转、缩放等状态)_btn.transform = CGAffineTransformIdentity;方法二:[UIView animateWithDuration:1.0 animations:^{ rowView.frame = CGRectMake(0,20,100,40); rowView.alpha = 1;}];[UIView animateWithDuration:1.0 animations:^{ rowView.frame = CGRectMake(0,20,100,40); rowView.alpha = 1;} completion:^(BOOL finished){ //动画执行完毕后会自动调用这个block NSLog(@“哈哈”);}];
Xcode--创建动画
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。