I have a UIScrollView which contains many UIImageView's UILabel's etc... the labels are well longer that the UIScrollView, but when I run the app, I cannot click and scroll down...
Why might this be?
Thanks
|
I have a Why might this be? Thanks |
||||
|
|
|
It's always good to show a complete working code snippet:
I have not found a way to set contentSize in IB. |
||||
|
|
|
If you cannot scroll the view even after you set contentSize correctly, make sure you uncheck "Use AutoLayout" in Interface Builder -> File Inspector. |
|||||||||||||
|
|
Make sure you have the contentSize property of the scroll view set to the correct size (ie, one large enough to encompass all your content.) |
|||||||
|
|
Try to resize the content size to huge numbers. I couldn't understand, why my scroll view doesn't scroll even when it's content size seems to be bigger than control size. I discovered, that if the content size is smaller than needed, it doesn't work also.
Instead of 2000 you can put your own big numbers. And if it works, then it means, that your content size is not big enough when you resize. Delegate is not necessary for scroll view to work. |
|||
|
|
The answer above is correct - to make scrolling happen, it's necessary to set the content size. If you're using interface builder a neat way to do this is with user defined runtime attributes. Eg:
|
|||||
|
|
New 3/26/2013 I stumbled on an easier way to do this without code (setting contentSize) |
|||
|
|