在 UIView 上叠加动画
将动画 gif 叠加在 UIView 上的最佳方法是什么?我有一个降雪动画,我想将其放在视图之上,但仍保留与下面视图的交互。
这可以通过 UIView 动画来完成吗?或者 CoreAnimation 会更好(用于合成图层)。
再次感谢您的帮助
What is the best way to overlay an animated gif on top of a UIView? I have an animation of snowfall that I would like to lay on top of a view, yet still retain interaction with the view below.
Can this be accomplished with UIView animation, or would CoreAnimation be better (for compositing the layers).
Thanks again for the help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能的许多选项之一是设置 UIView.backgroundColor = [UIColorclearColor],然后将动画对象放置在视图后面,或者使用带有透明背景的
UIButton
, ETC。One of probably many options would be to set the
UIView.backgroundColor = [UIColor clearColor]
, then place animation objects behind the view, or use aUIButton
with a clear bg, etc.