Alaattin Bedir
Alaattin Bedir

Reputation: 193

how i can lazy load thumbnail images to scroll view vertically with pages?

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.

Upvotes: 2

Views: 407

Answers (2)

javieralog
javieralog

Reputation: 1337

if you are using vertical only scroll you may use UITableView with custom UITableViewCell.

This way, you get the lazy load done.

Upvotes: 0

Robot Woods
Robot Woods

Reputation: 5687

I used this: http://www.markj.net/iphone-asynchronous-table-image/ and I'd think it would help in your scenario as well

Upvotes: 1

Related Questions