Create Simple Scrolling View

Setting The Whole View As Scroll View Create a new ViewController as normal and drag on a Scroll View object. In The #ViewController.h File IBOutlet UIScrollView *MainScrollView; In The #ViewController.m File //*********************************** //*********************************** //********** VIEW DID LOAD ********** //*********************************** //*********************************** – (void)viewDidLoad { [super viewDidLoad]; //—– SET THE SCROLL VIEW SIZE —– MainScrollView.contentSize = CGSizeMake(320,1000); […]

Read More