TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Nov 2015 |
Maintained by litt1e-p.
Scroll to hide navigationBar and toolBar or tabBar for making full screen effect like Facebook app which is base on NJKScrollFullScreen.
need 2 lines code only for example, in UITableViewController:
- //@property (nonatomic, strong) LPScrollFullScreen *scrollProxy;
- //self.edgesForExtendedLayout = UIRectEdgeAll;
- //self.extendedLayoutIncludesOpaqueBars = YES;
- _scrollProxy = [[LPScrollFullScreen alloc] initWithForwardTarget:self];
- self.tableView.delegate = (id)_scrollProxy;