NSTimer改变图像iPhone编程
如何在 iPhone 编程中使用 NSTimer 定期更改图像?
我创建一个用于加载图像的图像视图。
我想在 imageview 中显示图像并使用 NSTimer 定期更改图像。
How to change images periodically using NSTimer in iPhone progranmming?
I create an image view for loading images.
I want to display images in imageview and periodically change images by using NSTimer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不使用 NSTimer,而是使用一组 UIImage 并对它们进行动画处理。请参阅此处的文档。
Instead of using NSTimer, I would just use an arrary of UIImages and animate them. See the documentation from here.
将您喜欢的图像导入到您的捆绑应用程序中
将它们称为 image1.png、image2.png image3.png 等等....
调用它(参考)“theImage”
在界面构建器中添加 UIImageview在 H 文件中
:在 M 文件中:
import the images you like to your bundle application
called them image1.png, image2.png image3.png and so on....
Add UIImageview in interface builder call it (reference) "theImage"
in the H file:
in the M file:
您还可以使用图像名称数组,而不是重命名包中的图像。 :)
you can also use array of image names rather renaming images in your bundle. :)