I have a view hierarchy like this:
-First View Controller
-View
-ScrollView
-TBD
-ImageView
I am trying to use the following (from apple docs) to set the content size of the ScrollView:
UIScrollView *tempScrollView=(UIScrollView *)self.view;
tempScrollView.contentSize=CGSizeMake(320,1000);
but I get error:
Terminating app due to uncaught exception 'NSInvalidArgumentException'
How can I modify to correctly set contentSize for the scrollView?
So the problem is this
self.view gets your main UIView for the controller, your scrollView is subview of self.view and to access this you'll need an IBOutlet.
So first thing is to create the IBOutlet in your viewControllers .h
Then in your storyboard hook your scrollView that's ypou put in your viewContoller to the IBoulet. Click the scrollView -> One right Utilities tab -> slick the right most tab, it will have a arrow in a circle -> Then click the Referencing Outlet and drag it over to your view controller -> it will give you an option to either select the scrollView or view.
Select scrollView.
That's it, now where you have your code just change it to: