Reputation: 35128
Why am I not able to zoom with UIScrollView? I set min / max zoom factor in storyboard. What else do I need?
Upvotes: 0
Views: 37
Reputation: 35128
Need to implement viewForZoomingInScrollView
UIScrollViewDelegate method.
func viewForZoomingInScrollView(scrollView: UIScrollView) -> UIView? {
return self.scrollViewContent
}
It should return a subview inside scrollview. I put a subview that has exact the same size as scrollview contextSize.
Upvotes: 1