swift 在UIButton上展示动图

1、使用SDWebImage

btn.sd_setImage(with: URL(fileURLWithPath: imagePath), for: .normal, completed: nil)

2、使用Kingfisher

btn.kf.setImage(with: URL(fileURLWithPath: imagePath), for: .normal, placeholder: nil, options: [.preloadAllAnimationData], progressBlock: nil) { (result) in

        }

你可能感兴趣的:(swift 在UIButton上展示动图)