ios – UIView帧动画“摆动”

ios – UIView帧动画“摆动”,第1张

概述我有这段疯狂的代码.如何使用Core Animation为此设置动画,以便减少代码?我已经找到 some code用于做“摆动”动画,但那是3D,我只是希望视图左右移动,我不想动画它在侧面反d. [UIView animateWithDuration:0.1f animations:^{ CGRect frame = ta 我有这段疯狂的代码.如何使用Core Animation为此设置动画,以便减少代码?我已经找到 some code用于做“摆动”动画,但那是3D,我只是希望视图左右移动,我不想动画它在侧面反d.

[UIVIEw animateWithDuration:0.1f                 animations:^{                     CGRect frame = tableVIEw.frame;                     frame.origin.x -= 4;                     tableVIEw.frame = frame;               } completion:^(BOol finished) {                   [UIVIEw animateWithDuration:0.1f                                    animations:^{                                        CGRect frame = tableVIEw.frame;                                        frame.origin.x += 4;                                        tableVIEw.frame = frame;                                  } completion:^(BOol finished) {                                        [UIVIEw animateWithDuration:0.1f                                                         animations:^{                                                             CGRect frame = tableVIEw.frame;                                                             frame.origin.x -= 4;                                                             tableVIEw.frame = frame;                                                       } completion:^(BOol finished) {                                                             [UIVIEw animateWithDuration:0.1f                                                                              animations:^{                                                                                  CGRect frame = tableVIEw.frame;                                                                                  frame.origin.x = 0;                                                                                  tableVIEw.frame = frame;                                                                            } completion:^(BOol finished) {                                                                                  // nothing                                                                            }                                                              ];                                                       }                                        ];                                  }                    ];               }];
解决方法 This question是执行重复动画动画的非常简洁的方式.我用它来旋转摆动,但你可以应用任何转换,在你的情况下,转换 总结

以上是内存溢出为你收集整理的ios – UIView帧动画“摆动”全部内容,希望文章能够帮你解决ios – UIView帧动画“摆动”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1076207.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存