This repository has been archived by the owner on Jun 13, 2021. It is now read-only.
Version 2.0.3
What's New
- Added
hidesNavigationBarHairline
boolean, and by default it is now set toNO
. (#64) - Improved Quick-Look Documentation for Theme Methods
Navigation Bar Hairline
As of 2.0.3
the navigation bar hairline view is no longer hidden by default. However, if you're seeking a true flat look (like the image above), you can hide the hairline at the bottom of the navigation bar by doing the following:
Objective-C
[self.navigationController setHidesNavigationBarHairline:YES];
//or
self.navigationController.hidesNavigationBarHairline = YES;
Changes
UINavigationController+Chameleon.h
@property (nonatomic, assign) BOOL hidesNavigationBarHairline;