作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 UIImageView
当用户点击它时,一个 4 点的边框会打开和关闭。我正在尝试按如下方式对边界进行动画处理:
CABasicAnimation *widthAnimation = [CABasicAnimation animationWithKeyPath:@"borderWidth"];
widthAnimation.toValue = self.isSelected ? @4.0 : @0.0;
widthAnimation.duration = 0.1;
[self.imageView.layer addAnimation:widthAnimation forKey:@"borderWidth"];
CABasicAnimation
只是更改表示层,而不是实际模型。我也读过使用
fillMode
和
removedOnCompletion
是不好的做法,因为它会导致模型与用户看到的不一致。因此,我尝试使用以下行更改模型:
self.imageView.layer.borderWidth = self.isSelected ? 4.0 : 0.0;
performSelector: withObject: afterDelay:
,延迟是动画的持续时间。这在大多数情况下都有效,但有时循环不完全匹配,动画会先运行,然后跳回原始状态,然后捕捉到新状态,大概是
performSelector
的结果。
performSelector
的情况下平滑地为边框设置动画? ?
最佳答案
这是我不久前制作的 CABasicAnimation 示例:
-(void) animateProgressFrom:(CGFloat)fromValue to:(CGFloat)toValue
{
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"opacity"];
animation.fromValue = @(fromValue);
animation.toValue = @(toValue);
animation.duration = ABS(toValue - fromValue)*3.0;
[self.layer addAnimation:animation forKey:@"opacity"];
[CATransaction begin];
[CATransaction setDisableActions:YES];
self.layer.opacity = toValue;
[CATransaction commit];
}
关于ios - 做CABeginAnimation时如何正确设置模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33662683/
我是一名优秀的程序员,十分优秀!