UINavigationBar+Addition is available through CocoaPods, to install, simply add the following line to your Podfile:
pod "UINavigationBar+Addition"
In your view controller, import the category header file.
#import "UINavigationBar+Addition.h"
Hide the (1px bottom) hairline of nav bar
- (void)viewDidLoad {
[super viewDidLoad];
UINavigationBar *navigationBar = self.navigationController.navigationBar;
[navigationBar hideBottomHairline];
}
Or make the whole nav bar transparent with [navigationBar makeTransparent]
;
Junda, junda@just2us.com
UINavigationBar+Addition is available under the MIT license. See the LICENSE file for more info.