Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

6 Answers

up vote 44 down vote accepted

It's always good to show a complete working code snippet:

// in viewDidLoad:
//
UIScrollview *myScrollView;
UIView_descendent *contentView;
...
// scrollview won't scroll unless content size explicitly set
//
[myScrollView setContentSize:contentView.frame.size];

I have not found a way to set contentSize in IB.

share|improve this answer

If you cannot scroll the view even after you set contentSize correctly, make sure you uncheck "Use AutoLayout" in Interface Builder -> File Inspector.

share|improve this answer
11  
Alternatively, you can set contentSize in viewDidLayoutSubviews:, and it will be applied after the autolayout completes. – Chris Vasselli Nov 27 '12 at 5:51
@user1539652.Thanks. Just what i needed. – Phanindar Dec 27 '12 at 0:25
@" Chris Vasselli" slove my issue.. GR8..:-) – Ayaz Mar 18 at 7:35
wow, Thank you!!! I spent two hours on this issue!!! – StarCub Mar 22 at 22:39
Hours of my life wasted before finding this jewel-like suggestion. A big thankyou goes out to you sir. – juhan_h Apr 4 at 14:01
show 1 more comment

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.)

share|improve this answer
1  
do I have to do this programatically? or can I do it in IB? – Mark May 13 '10 at 5:47
If you're using IB, you can set it from there - see below. . (Separate answer, so I can include pics). – Jasper Blues Nov 16 '12 at 2:31

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.

self.scrollView.contentSize = CGSizeMake(2000, 2000);

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.

share|improve this answer
Genius - such a simple way to check what is going on. Thanks a bunch! – The Crazy Chimp Jan 20 at 11:54

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:

enter image description here

share|improve this answer
this didn't do anything for me. – coolcool1994 Apr 18 at 0:16
Oops, the pic shows {0, 0}, but you of course have to put large enough numbers in. . . this approach will only work for simple views where you know the content-size up front. . . (in fact, for complex views I recommend pure code, anyway). – Jasper Blues Apr 18 at 1:18

New 3/26/2013 I stumbled on an easier way to do this without code (setting contentSize)

http://stackoverflow.com/a/15649607/1705353

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.