Skip to content
This repository has been archived by the owner on Jun 13, 2021. It is now read-only.

Version 2.0.3

Compare
Choose a tag to compare
@vicc vicc released this 02 Oct 13:53
· 118 commits to master since this release

2-0-3

What's New

  • Added hidesNavigationBarHairline boolean, and by default it is now set to NO. (#64)
  • Improved Quick-Look Documentation for Theme Methods

Navigation Bar Hairline

No 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;