去黑色陰影
[self.navigationController.navigationBar setShadowImage:[UIImage new]];
設(shè)置陰影
self.navigationController.navigationBar.layer.shadowColor = [UIColor blackColor].CGColor;
self.navigationController.navigationBar.layer.shadowOffset = CGSizeMake(0, 5);
self.navigationController.navigationBar.layer.shadowOpacity = 0.2;
設(shè)置Title
[self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor blackColor],NSFontAttributeName:[UIFont boldSystemFontOfSize:16]}];
重新設(shè)置手勢代理,用于自定義leftItem自定義后依然可用左滑手勢
self.navigationController.interactivePopGestureRecognizer.delegate = self;
導(dǎo)航條背景圖片
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"AlbumListViewBkg"] forBarMetrics:0];
導(dǎo)航條不透明
self.navigationController.navigationBar.translucent = NO;
后面會陸續(xù)更新~~~