New file |
| | |
| | | // |
| | | // LMJBaseViewController.h |
| | | // PLMMPRJK |
| | | // |
| | | // Created by NJHu on 2017/3/29. |
| | | // Copyright © 2017年 GoMePrjk. All rights reserved. |
| | | // |
| | | |
| | | #import <UIKit/UIKit.h> |
| | | #import "LMJNavigationBar.h" |
| | | #import "LMJNavigationController.h" |
| | | |
| | | @class LMJNavUIBaseViewController; |
| | | @protocol LMJNavUIBaseViewControllerDataSource <NSObject> |
| | | |
| | | @optional |
| | | - (BOOL)navUIBaseViewControllerIsNeedNavBar:(LMJNavUIBaseViewController *)navUIBaseViewController; |
| | | |
| | | - (UIStatusBarStyle)navUIBaseViewControllerPreferStatusBarStyle:(LMJNavUIBaseViewController *)navUIBaseViewController; |
| | | |
| | | @end |
| | | |
| | | @interface LMJNavUIBaseViewController : UIViewController <LMJNavigationBarDelegate, LMJNavigationBarDataSource, LMJNavUIBaseViewControllerDataSource> |
| | | /*默认的导航栏字体*/ |
| | | - (NSMutableAttributedString *)changeTitle:(NSString *)curTitle changeColor:(UIColor*) color; |
| | | /** */ |
| | | |
| | | - (void)setNavBarImg:(NSString *)imageName; |
| | | |
| | | @property (weak, nonatomic) LMJNavigationBar *lmj_navgationBar; |
| | | @end |