CRGradientNavigationBar
CRGradientNavigationBar copied to clipboard
Custom UINavigationBar subclass which allows gradient coloured navigation bar on iOS 7.
Added property for setup gradient angle. Added property for setup gradient opacity.
How would you change the view controller for only one View Controller rather than the whole application
This library looks like a lifesaver! I need to do something exactly like this (with a translucent gradient), however, I need the gradient to be horizontal, rather than vertical. Is...
Added functions to change gradient's rotation and color/rotation fade duration
My app is a Tab Bar Controller app, in which each tab is a NavigationController. I have my code set as: `UINavigationController *navigationController = [[UINavigationController alloc] initWithNavigationBarClass:[CRGradientNavigationBar class] toolbarClass:nil]; ```...
It is possible using gradient in this case? ``` EKEventEditViewController *controller2 = [[EKEventEditViewController alloc] initWithNavigationBarClass:[CRGradientNavigationBar class] toolbarClass:nil]; UIColor *firstColor = [UIColor colorWithRed:255.0f/255.0f green:42.0f/255.0f blue:104.0f/255.0f alpha:1.0f]; UIColor *secondColor = [UIColor colorWithRed:255.0f/255.0f...
Hey croman, Your navigation bar works great, but the colors that I include in the array show up much darker than they should. When I set both gradient colors to...
Downloaded the demo, on iOS 7, run it after just only set `translucent = YES`, it looks totally different from `NO`. How to handle the actual effect of color gradient...
I'm using storyboards so I don't use the App Delegate class to initialize my views. How would I implement the CRGradientNavBar then? Is it not possible? ``` [[UINavigationBar appearance] setTintColor:[~gradient~]]...