如何在内存和CPU负载较少的情况下在iPad上滑动图像变化?
我的应用程序有大约 100 张图片。每张图片大约 150 KB。我只想滑动每张图片以转到下一张或返回上一张图片。
使用更少内存和 CPU 负载的最佳方法是什么???
My app has around 100 Picture. Each picture is around 150 KB.And I just want to swipe each picture to go next or back to previous pic.
What is the best way that use less memory and CPU load ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您在应用程序中拥有所有图像,所有图像名称都存储在 NSMutableArray 中。
将一个 UIImageView 连接为 XIB 文件上的 IBOutlet。
如有任何疑问,请发表评论。
希望有帮助。
Assuming you have all images within application, all image names stored in NSMutableArray.
Take one UIImageView wired up as IBOutlet on your XIB file.
Please do leave comment for any query.
Hope it helps.