• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - CAShapeLayer 动画 iOS7 的问题

[复制链接]
菜鸟教程小白 发表于 2022-12-12 17:03:13 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我一直在努力解决 iOS7 上的动画效果(8、9 效果很好),它涉及将圆角矩形收缩成圆形。得到这样的效果。

Desired Effect

但我在 iOS7 上尝试收缩圆圈时出现了一些失真。

Distorted Effect on iOS7

我的 View Controller 非常简单

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    CAShapeLayer *layer = [CAShapeLayer layer];
    layer.fillColor = [UIColor blackColor].CGColor;
    layer.frame = CGRectMake(100, 100, 100, 100);
    layer.path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, 100, 50) cornerRadius:25].CGPath;
    self.myLayer = layer;
    [self.view.layer addSublayer:layer];

}


- (void)viewDidAppearBOOL)animated {
    [super viewDidAppear:animated];

    CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath"path"];
    animation.values = @[
                         (id)[UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, 100, 50) cornerRadius:25].CGPath,
                         (id)[UIBezierPath bezierPathWithRoundedRect:CGRectMake(5, 0, 90, 50) cornerRadius:25].CGPath,
                         (id)[UIBezierPath bezierPathWithRoundedRect:CGRectMake(10, 0, 80, 50) cornerRadius:25].CGPath,
                         (id)[UIBezierPath bezierPathWithRoundedRect:CGRectMake(15, 0, 70, 50) cornerRadius:25].CGPath,
                         (id)[UIBezierPath bezierPathWithRoundedRect:CGRectMake(20, 0, 60, 50) cornerRadius:25].CGPath,
                         (id)[UIBezierPath bezierPathWithRoundedRect:CGRectMake(25, 0, 50, 50) cornerRadius:25].CGPath,
                         ];

    animation.keyTimes = @[@(0),
                           @(0.18),
                           @(0.36),
                           @(0.54),
                           @(0.72),
                           @(1),
                           ];

    animation.duration = 10;
    animation.fillMode = kCAFillModeForwards;
    [self.myLayer addAnimation:animation forKey:nil];
    self.myLayer.path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(25, 0, 50, 50) cornerRadius:25].CGPath;
}



Best Answer-推荐答案


这似乎是 iOS 7 的一个错误。查看此链接:

http://www.paintcodeapp.com/blogpost/code-for-ios-7-rounded-rectangles

帖子底部有一个类别方法可以解决此问题。 我用你的代码测试了它,它似乎工作!我不得不做一个小改动,那就是替换

CGFloat limitedRadius = MIN(radius, limit);

CGFloat limitedRadius = radius;

这使得拐角半径变得足够大以创建一个圆。可能值得调查一下为什么拐角半径一开始就受到限制,但我会把它留给你

关于ios - CAShapeLayer 动画 iOS7 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33648955/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap