LPScrollFullScreen 1.0.2

LPScrollFullScreen 1.0.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Nov 2015

Maintained by litt1e-p.



  • By
  • litt1e-p

Scroll to hide navigationBar and toolBar or tabBar for making full screen effect like Facebook app which is base on NJKScrollFullScreen.

Screenshot

Include

  • use cocapods > pod 'LPScrollFullScreen', '~> 1.0.0'
  • manual include > drag LPScrollFullScreen folder into you project

Usage

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;