在我的項目里經(jīng)常會遇到自定義導(dǎo)航欄的返回按鈕,以及設(shè)置導(dǎo)航欄的背景為透明。
但是這樣子設(shè)置會遇到兩個問題:
1.如果設(shè)置不當(dāng),返回的手勢交互會不能用走越。
2.導(dǎo)航欄透明的狀態(tài)和不透明狀態(tài)切換很麻煩,而且效果不好耻瑟。
在這里我分享一種解決辦法买喧,供大家參考:
首先你要創(chuàng)建一個BaseViewController,這樣你的一些基礎(chǔ)的設(shè)置都可以在這個Controller里面進行了匆赃。
BaseViewController的h文件
@interface BaseViewController : UIViewController<UIGestureRecognizerDelegate>
//返回按鈕的pop
-(void)viewWillBack;
//這個作為透明導(dǎo)航欄下面的顏色設(shè)置view淤毛;
@property (nonatomic, strong) UIView *NavBarView;
@end
BaseViewController的m文件
- (void)viewDidLoad
{
[super viewDidLoad];
//開啟交互手勢,我一般是在自定義的導(dǎo)航欄里面設(shè)置的,UIGestureRecognizerDelegate
self.navigationController.interactivePopGestureRecognizer.delegate = self;
//設(shè)置導(dǎo)航欄為透明顏色
[self.navigationController.navigationBar setBackgroundImage:[UIImage createImageWithColor:[UIColor clearColor]] forBarMetrics:UIBarMetricsDefault];
//創(chuàng)建底部的導(dǎo)航欄試圖
[self bulidNavBarView];
//第一個控制器不需要加返回按鈕
if ([[self.navigationController viewControllers] count] > 1) {
[self resetBackBarButton];
}
}
-(void)viewWillBack
{
[self.navigationController popViewControllerAnimated:YES];
}
//設(shè)置返回按鈕
- (void)resetBackBarButton
{
UIButton *leftBarButton = [UIButton buttonWithType:UIButtonTypeCustom];
leftBarButton.frame = CGRectMake(0, 0, 40, 40);
[leftBarButton setImage:[[UIImage imageNamed:@"nav_back"] imageWithOverlayColor:[UIColor whiteColor]] forState:UIControlStateNormal];
[leftBarButton addTarget:self action:@selector(viewWillBack) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithCustomView:leftBarButton];
//用于調(diào)整返回按鈕的位置
UIBarButtonItem *space_item = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
space_item.width = -10;
//通過這個方法設(shè)置,手勢返回的操作就不會關(guān)閉了
self.navigationItem.leftBarButtonItems = @[space_item, item];
}
接下來就是在BaseViewController的頂部加上一個NavBarView
//當(dāng)然如果你要加圖片可以換成UIImageView
- (void)bulidNavBarView{
//如果這里導(dǎo)航欄設(shè)置成半透明就是0算柳,如果不是半透明就是-64低淡,可以根據(jù)實際情況調(diào)整,就是要放在view頂部
self.navBarView = [[UIView alloc]initWithFrame:CGRectMake(0, -64, [UIScreen mainScreen].bounds.size.width, 64)];
//設(shè)置顏色為白色;
self.navBarView.backgroundColor = [UIColor whiteColor];
[self.view addSubview:self.navBarBgView];
}
控制導(dǎo)航底部的陰影線條
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
//隱藏
self.navigationController.navigationBar.shadowImage = [UIImage new];
//如果現(xiàn)實的話換一張陰影的圖片就可以了
}
當(dāng)然有可能還需要設(shè)置導(dǎo)航欄的其他屬性,所以我喜歡創(chuàng)建一個MainNavigationController蔗蹋,這個里面來統(tǒng)一設(shè)置
//設(shè)置導(dǎo)航欄標(biāo)題的顏色和字體
NSDictionary * dict = @{
NSFontAttributeName:[UIFont systemFontOfSize:17],
NSForegroundColorAttributeName:color
};
self.navigationBar.titleTextAttributes = dict;
運用導(dǎo)航欄的代理方法UINavigationControllerDelegate來進行push之后隱藏Tabbar的操作
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
{
viewController.hidesBottomBarWhenPushed = YES;
[super pushViewController:viewController animated:animated];
viewController.hidesBottomBarWhenPushed = NO;
}
- (UIViewController *)popViewControllerAnimated:(BOOL)animated{
UIViewController *viewCol = [super popViewControllerAnimated:animated];
if (self.viewControllers.count == 1) {
viewCol.tabBarController.tabBar.hidden = NO;
}else{
viewCol.tabBarController.tabBar.hidden = YES;
}
return viewCol;
}
可能上面并不是最好的解決方案何荚,如果你們有什么好的建議可以互相學(xué)習(xí),不足之處還請見諒猪杭。