Does anyone know how to load images (plural) inside a ScrollView using PFImageView.. I manage to load only 1 image but can't make a the next PFImageview.
Remember these images are being downloaded by Parse.com and the objects have been passed through a cell segue to a DetailView.
The code to load images in a PFImageView is:
look1.file = bellezaView.image_1;
[look1 loadInBackground];
That is one image, how would I load the next one?
I'd really appreciate any help.. Have been stuck at this for a week already! Thanks!
You can use UICollectionView for this. Here is a thorough tutorial: http://skeuo.com/uicollectionview-custom-layout-tutorial
Another option is to use UIPageViewController, where each photo is in its own page. I use this for a photo browser in one of my apps. Here is a nice tutorial for it: http://www.appcoda.com/uipageviewcontroller-storyboard-tutorial/
You can also try a library called iCarousel: https://github.com/nicklockwood/iCarousel