I've a problem using a UIScrollView with subviews and vertical scrolling.

When in portrait mode it scrolls fine, but when in landscape, even if I set an arbitrary value (let's say 1400px), it doesn't really scroll along that size, removing around 400 pixels and it stops before the content is fully visible.

Any ideas?

link|improve this question

50% accept rate
Posting some code will be helpful. – shannoga Feb 23 '11 at 19:23
feedback

1 Answer

up vote 2 down vote accepted

Did you try to set

yourScrollView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

It should resize the scrollview height.

link|improve this answer
Yeah, it worked. – S.C. Feb 25 '11 at 10:46
feedback

Your Answer

 
or
required, but never shown

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