i have photo gallery which loaded to scroll view vertically and i only want to load visible pages to avoid memory issues like table views did. Is there a way to do this? i am using core data to get images and there are more than 150+ images in it.
我有照片库加载到垂直滚动视图,我只想加载可见的页面,以避免内存问题,如表视图。有没有办法做到这一点?我正在使用核心数据来获取图像,其中有超过150个图像。
2 个解决方案
#1
1
I used this: http://www.markj.net/iphone-asynchronous-table-image/ and I'd think it would help in your scenario as well
我用过这个:http://www.markj.net/iphone-asynchronous-table-image/我觉得它对你的场景也有帮助
#2
0
if you are using vertical only scroll you may use UITableView with custom UITableViewCell.
如果您使用的是垂直滚动,则可以将UITableView与自定义UITableViewCell一起使用。
This way, you get the lazy load done.
这样,您就可以完成延迟加载。
#1
1
I used this: http://www.markj.net/iphone-asynchronous-table-image/ and I'd think it would help in your scenario as well
我用过这个:http://www.markj.net/iphone-asynchronous-table-image/我觉得它对你的场景也有帮助
#2
0
if you are using vertical only scroll you may use UITableView with custom UITableViewCell.
如果您使用的是垂直滚动,则可以将UITableView与自定义UITableViewCell一起使用。
This way, you get the lazy load done.
这样,您就可以完成延迟加载。