I am new to objective-C programming.
I am using UIScrollView with some labels, image and text view on it.
I have turned off Autolayout and already tried wit
I did below, my problem solved
changing UIScrollView Content Insets property in from Automatic to Never and Adding below code in viewDidLoad()
Automatic
Never
viewDidLoad()
scroller.contentInset = UIEdgeInsetsZero; scroller.scrollIndicatorInsets = UIEdgeInsetsZero; scroller.contentOffset = CGPointMake(0.0, 0.0);`