Scrolls can be viewed as table views, you can give your table a bottom insertion that works like a bottom pad to push your cells some distance from the bottom edge of your table view.
CGFloat heightOfYourTabBar = 50; UIEdgeInsets insets = UIEdgeInsetsMake(0, 0, heightOfYourTabBar, 0); [self.tableView setContentInset:insets]; [self.tableView setScrollIndicatorInsets:insets];
The area of your table view that appears below the tab bar will still be visible, but the "bottom" of your cells will be pushed up. This way, you can scroll all the way to the last cell without closing the tab bar.
Scrolling and pasting views are described in Configuring Scrolling Content Contents, Content, and Scrolling Indexes in the Apple Scroll View for iOS Programming Guide. There is an example for the Photos application, which is exactly the template that you imitate for your application, adding inserts.
source share