Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to enable zoom for UICollectionView [duplicate]

I am confused. I have a UICollectionView. I have my own UICollectionViewLayout subclass (iow, I am not using the Flow thing). UICollectionView instance is a subclass of UIScrollView. It adds multiple subviews. But questions like Properly zooming a UIScrollView that contains many subviews seem to say that scrollable views should just have one subview to "scroll the whole view". Seems kind of an inconsistent marriage to me. I mean why does Apple give me a framework for making a multiple child view, and then stick them all in scroll view, which isn't supposed to work well?

So I'm curious how I should go about making my whole UICollectionView (it's in a UICollectionViewController subclass) zoomable. Do I need to implement various delegate methods and invalidate/manipulate the layout object, deriving the layouts based on some property I keep in my layout? Or is there some other mechanism?

Aside, why can't it just manipulate the zoomScale property and do it automagically for me? Or am I missing some subtlety here?

like image 646
Travis Griggs Avatar asked Mar 04 '14 20:03

Travis Griggs


1 Answers

I am not sure whether I got your question in correct way or not, but I think you might want to check these links:-

1. zoom entire UICollectionView - It also has a link to Sample code for UICollectionView. You might be interested in checking it.
2. Adding pinch zoom to a UICollectionView.
3. Make UICollectionView zoomable?

Hope this will help you.

like image 200
Piyush Dubey Avatar answered Sep 27 '22 23:09

Piyush Dubey