TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Jul 2016 |
Maintained by LeoMobileDeveloper.
LHNavigationController能够让你的App像网易新闻那样支持全屏的push/pop.
0.1.2版本支持
pod LHNavigationController
如果在Swift项目中应用(参见SwiftDemo工程)
use_frameworks!
pod LHNavigationController
然后,在使用的swift文件中
import LHNavigationController
默认效果
3d效果
主要有四个类
如果你想要实现网易那样的NavigationBar切换效果,你需要让某些类继承以下
想要支持全屏的Pop手势很简单,只需要把你的UINavigationController替换成LHNavigationController即可
实现全屏的Push需要你设置LHNavigationController的代理 lhDelegate
@property (weak,nonatomic) id<LHNavigationControllerDelegate> lhDelegate;
然后,在对应的方法中,返回将要push的controller
- (UIViewController *)viewControllerAfterController:(UIViewController *)controller{
//这里的controller是导航堆栈最上面的那个
}
需要继承LHViewController来让ViewControlelr自带导航栏
LHViewController
// 访问导航栏
@property (strong,nonatomic,readonly)UINavigationBar * lh_navigationBar;
// 访问navigationItem
@property (strong,nonatomic,readonly)UINavigationItem * lh_navigationItem;
// 用这个作为ContainView来增加删除subview
@property (strong,nonatomic,readonly)UIView * lh_view;
// 访问LHNativationController
@property (strong,nonatomic,readonly)LHNavigationController * lh_navigationController;
// 设置NavigationBar背景色
@property (strong,nonatomic)UIColor * barTintColor;
// 设置BarButton颜色
@property (strong,nonatomic)UIColor * barItemsTintColor;
// 设置BarTitle颜色
@property (strong,nonatomic)UIColor * barTitlesTintColor
LHNavigationController
//设置转换风格,支持默认和3D两种
@property (assign,nonatomic) LHNavigationTransitionStyle lh_transtionStyle;
我在这篇博客里详细的讲解了这个库的实现原理。
Leo, leomobiledeveloper
LHNavigationController is available under the MIT license. See the LICENSE file for more info.