Reputation: 161
I have put some UI components on my scroll view, it's supposed to take the full height of the screen. but it's leaving some empty space at the bottom.
Upvotes: 0
Views: 698
Reputation: 668
it might be happen because of scroll view insets
try this:
self.automaticallyAdjustsScrollViewInsets=NO;
You can use Interface Builder also, just make sure Adjust Scroll View Insets
option is not-checked
Upvotes: 1