使用 NSArray 的 UIImage 对象显示一系列 UIImageView
我找不到简单的方法。有人帮忙吗?谢谢!
I can not find out a easy way. Anyone help? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我找不到简单的方法。有人帮忙吗?谢谢!
I can not find out a easy way. Anyone help? Thanks!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
将图像名称放入数组而不是图像中,这在内存方面要好得多。
然后将该滚动视图添加到您想要的任何视图中并释放它。
正如您所看到的,这会将所有图像水平地并排放置。如果您想垂直执行此操作,只需取消注释所有注释行并删除每个注释行之前的行即可。
Put your image name into array instead of images, that's much better memory-wise.
Then add that scrollView to shichever view you want and release it.
As you can see this will put all your images one next to other horizontally. If you want to do it vertically, simply uncomment all the commented lines and delete the line before each of those commented lines.
这就是使用 iOS4 解决这个问题的方法。 iOS5 添加了一种更简单的方法来执行此操作,但您需要查看文档,因为它仍处于 NDA 状态。
This is how one would solve this problem with iOS4. iOS5 adds an easier way to do this but you'll need to look at the doc since it's still under NDA.