How to enable zoom for UICollectionView [duplicate]

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-18 11:51:16

问题


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?


回答1:


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.




回答2:


If you're looking for the iOS 7 Photos application type of pinching + transition, maybe take a look at this question here: UICollectionView interactive layout transition using iOS 7 APIs



来源:https://stackoverflow.com/questions/22182657/how-to-enable-zoom-for-uicollectionview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!