TintColor . .
, navigationBar - UINavigationController,
"setValue: forKey:". 5 , AppStore.
UINavigationBar drawRect: .
,
@implementation CustomNavigationBar
- (void) drawRect:(CGRect)rect
{
[super drawRect:rect];
UIImage *backgroundImage = ImageFromColor(WANTED_COLOR);
[backgroundImage drawInRect:rect];
}
, UINavigationController initWithRootViewController:
- (id) initWithRootViewController:(UIViewController *)rootViewController
{
self = [super initWithRootViewController:rootViewController];
if (self)
{
CustomNavigationBar *navBar = [CustomNavigationBar new];
[self setValue:navBar forKey:@"navigationBar"];
}
return self;
}
, UINavigationController swizzling initWithRootViewController:
P.S. AppStore - .