Image gallery lib

0

I'm looking for a lib image gallery in the image style below with page control . I tried to create one using page view and insert it into the screen part with a container , but it did not go well. I tried to use lib banana , but it was not as expected either. Does anyone know any lib of galeria de imagem (or slide de imagem ) that looks like the photo or do you know how to develop one?

    
asked by anonymous 15.04.2016 / 02:44

1 answer

0

There are many libraries that implement this functionality. I quote two MWPhotoBrowser and IDMPhotoBrowser . Both work with local and remote images as well, by downloading and caching them.

However, especially if you're just starting out, I find it a very interesting exercise to actually develop this component. I suggest using a UICollectionView with landscape orientation, where each image would be a UICollectionViewCell. You can also do this using UIScrollView, but then you will have to deal with more implementation details, since using UICollectionView makes it easier to implement lazy loading.

In this link there is a how to make a simple gallery using a UICollectionView.

    
15.04.2016 / 10:06