How can I "enable" scrolling up and down in a UIViewController
ios6, iphone, uiviewcontroller
Solution
Got the answer. If you are using Storyboards (like myself) you have to go to the attributes inspector of the UiViewController and change the size parameter to freeform, then select the UIView of the UIViewController and in the size inspector choose whatever width or height you want and finally grab the Scroll View from the object library and insert it.
Problem
Ok, I have a navigation Controller that manages a drilldown tableview, when it reaches to the end it show a list of products, when you choose a product it will show a detail view (UiViewController). What I want to know is how to "Enable" scrolling up and down in that detail view so i can show full information about the product to the user. Thanks