开发者社区 问答 正文

在animateWithDuration调用时旋转

用下面的代码动画UIView,运行正常,就是不能实现在调用时实现旋转和缩放,我想同时实现这些,需要缩放至0,并且旋转。

[UIView animateWithDuration:0.4 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut
                 animations:^(void) {
                     recognizer.view.transform = CGAffineTransformMakeRotation(DegreesToRadians(540));
                     recognizer.view.backgroundColor = [[UIColor alloc] initWithRed:220.0/255.0 green:220.0/255.0 blue:220.0/255.0 alpha:1.0];   
                 }];

展开
收起
爵霸 2016-03-26 09:05:16 1722 分享 版权
0 条回答
写回答
取消 提交回答
问答地址: