Reputation: 551
I had a problem. I want a padding or margin on top above the webview. This is a picture of the problem:
Who can help me with this problem?
Upvotes: 3
Views: 3643
Reputation: 821
Way 1 : Select ViewController in Storybord and Deselect automaticallyAdjustsScrollViewInsets.
Way 2 : Write in View Controller
self.automaticallyAdjustsScrollViewInsets = NO ;
Upvotes: 8