15
votes

I feel like I have touched on every single possible cause for stopping this, but I have a UIScrollView in my Storyboard hooked up with an outlet and in the viewDidLoad I set the contentSize so that I can scroll (yes bigger than my frame size)!

However, whatever I change, I just can't scroll! I have a couple of textfields in my scrollview and bouncing enabled so I can see that when testing its moves up and down with my subviews in it but whatever I set the contentSize to I just can't scroll.

Anything I might be missing/should check? Is this a known issue with UIScrollView being used in a storyboard?

Whats even stranger is, I can do something like this: [scrollView setBackgroundColor:[UIColor blueColor]]; and I have a blue scroll view! But setting content size fails.

Edit

My only code (otherwise scrollview is just dropped into storyboard view controller):

-(void)viewDidAppear:(BOOL)animated
{
    [scrollView setContentSize:CGSizeMake(320, 640)];
}

Logged frame, comes out as expected:

width: 320.00
height: 504.00

Edit 2

Turns out that removing any subviews of the scroll view in my storyboard lets it scroll just fine. If I add any subview to it at all via the storyboard, even a blank brand new UIButton it just won't apply the contentSize/allow scrolling.

8
Edit your post to include your viewDidLoad method.rob mayoff
Will do, its literally just a single line setting the contentSize.Josh Kahane
Log the scrollview frame and include it alsoLithu T.V
Done, comes out as expected, odd huh.Josh Kahane
Are you testing on the 4 inch screen? stackoverflow.com/a/20575798/274179PostCodeism

8 Answers

48
votes

use ViewDidLayoutSubview

- (void)viewDidLayoutSubviews
{
    [_scrollView setContentSize:CGSizeMake(320, 500)];
}

UIViewController's method invoke sequence is as below

  • awakeFromNib
  • viewDidLoad
  • viewWillAppear
  • viewWillLayoutSubviews
  • viewDidLayoutSubviews
  • viewDidAppear
5
votes

viewDidLoad is not a good place to put code that relies on frame sizes of IB objects. If you log the contentSize of your scroll view in viewDidLoad, you will see that it's (0,0). Move the code (where you set the content size) to viewDidAppear, and it will work properly.

4
votes

Check these

  • User Interaction enabled
  • Outlet connected
  • Included contentsize greater than bounds
  • scrolling Enabled

eg

scrollView.contentSize = CGSizeMake(320, 640);

My storyboard looks like this for scrollview [working]

enter image description here

3
votes

I had exactly the same line of code in viewDidAppear and it did not work

Moved it to viewDidLayoutSubviews and it worked correctly.

[scrollView setContentSize:CGSizeMake(320, 500)];

Thanks trick14 for the answer.

3
votes

The issue is most probably with Auto Layout. UIScrollView needs special attention when using AutoLayout.

Quick-fix - bind one of the scroll's subviews to the top AND bottom space of it's superview (the scroll view).

Long story: Questions on SO: UIScrollView not scrolling regardless of large contentSize, UIScrollView will not scroll, even after content size set, UIScrollView doesn't use autolayout constraints

Apple's Documentation: https://developer.apple.com/library/ios/technotes/tn2154/_index.html

1
votes

Trip14's answer worked for me. In swift I coded it as:

override func viewDidLayoutSubviews() {

          (self.view as! UIScrollView).contentSize = CGSizeMake(600, 600)
        }
0
votes

This seems to be a similar issue. Other Story

It might be an issue with auto layout or constraints in the storyboard.

0
votes

the best way with the storyboard.:

follow the picture ,best way