Pinterest-like scroll-to-fullscreen UI for iOS5+.
Working with iOS 7;
RNFullScreenScroll
uses JRSwizzle to extend UIViewController
's functionality, and KVO (Key-Value-Observing) instead of conforming to UIScrollViewDelegate
for easiler implementation.
#import "RNFullScreenScroll.h"
...
- (void)viewDidLoad
{
[super viewDidLoad];
self.fullScreenScroll = [[RNFullScreenScroll alloc] initWithViewController:self scrollView:self.tableView];
// self.fullScreenScroll.shouldHideToolbarOnScroll = NO;
// self.fullScreenScroll.shouldHideTabBarOnScroll = NO;
}
Dependencies
------------
- [JRSwizzle 1.0](https://github.com/rentzsch/jrswizzle)
- [ViewUtils 1.1](https://github.com/nicklockwood/ViewUtils)