我试图在UISegmentedControl中为图像设置动画。这是我提出的,但它不起作用。
如果我在最后一行代码中将imageView.layer切换到_segmentedControl.layer,动画本身就可以正常工作。
我错过了什么?
UIImageView *imageView = [[UIImageView alloc] init];
imageView.image = [_segmentedControl imageForSegmentAtIndex:0];
CABasicAnimation *scale = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
scale.duration = 0.25;
scale.repeatCount = 2;
scale.autoreverses = YES;
scale.fromValue = [NSNumber numberWithFloat:1.0];
scale.toValue = [NSNumber numberWithFloat:0.0];
[imageView.layer addAnimation:scale forKey:@"scale"];
答案 0 :(得分:2)
为了将来的参考,我想分享我提出的解决方案。您可以至少为分段控件的子视图设置动画,而不是为片段设置动画,这似乎是不可能的。
UIView *subView = [[_segmentedControl subviews] objectAtIndex:0];
CABasicAnimation *scale = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
scale.duration = 0.25;
scale.repeatCount = 1;
scale.autoreverses = YES;
scale.fromValue = [NSNumber numberWithFloat:1.0];
scale.toValue = [NSNumber numberWithFloat:0.95];
[subView.layer addAnimation:scale forKey:@"scale"];
答案 1 :(得分:0)
您使用集合UIView。 UISegmentedControl无法设置动画