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

Swift--使图片360°周期旋转

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
UIImageView+Extension.swift
import UIKit

extension UIImageView {

    // 360度旋转图片
    func rotate360Degree() {
        let rotationAnimation = CABasicAnimation(keyPath: "transform.rotation.z") // 让其在z轴旋转
        rotationAnimation.toValue = NSNumber(double: M_PI * 2.0) // 旋转角度
        rotationAnimation.duration = 0.6 // 旋转周期
        rotationAnimation.cumulative = true // 旋转累加角度
        rotationAnimation.repeatCount = 100000 // 旋转次数
        layer.addAnimation(rotationAnimation, forKey: "rotationAnimation")
    }

    // 停止旋转
    func stopRotate() {
        layer.removeAllAnimations()
    }
}

上面的代码使用了CABasicAnimation做动画,组合了UIImageView扩展,使UIImageView中的单幅图片围绕Z轴做周期旋转。

直接把上述代码加到UIImageView扩展中,并设定旋转周期和旋转次数(可设定repeatCount为最大值使其一直旋转),然后调用即可。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
swift--设置app图标和启动页面发布时间:2022-07-13
下一篇:
使用swift extention练习 扩展Int发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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