UIScrollView won't scroll?

It doesn't scroll because there's nothing to scroll. You told it your content size was exactly the same size as the scrollview itself, so it's already displaying everything. You can set the alwaysBounceHorizontal or alwaysBounceVertical properties if you want it to always bounce when trying to scroll, but that's about it.

The issue is the frame size (how large the actual view is) is the same as your content size (how large your content is). So if you make your frame's height less than your contentSize's height it will scroll.

Simple answer to your question change setContentSize line to contentScrollView setContentSize:CGSizeMake(600, 481).

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions