The code:

UIViewController *viewController = [[UIViewController alloc] initWithNibName:@"NibName" bundle:nil];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
navigationController.navigationBar.tintColor = [UIColor redColor];
self.popoverController = [[[UIPopoverController alloc]     
initWithContentViewController:navigationController] autorelease];
popoverController.popoverContentSize = viewController.view.frame.size;
[popoverController presentPopoverFromRect:sender.frame inView:sender.superview
permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
[viewController release];
[navigationController release];

The tint color property of UINavigationBar doesn't work, it still has the default color. What could I be doing wrong?

link|improve this question
In viewController: NSLog(@"Tint:%@", self.navigationController.navigationBar.tintColor); self.navigationController.navigationBar.tintColor = [UIColor brownColor]; NSLog(@"Tint:%@", self.navigationController.navigationBar.tintColor); Log: Tint:(null) Tint:UIDeviceRGBColorSpace 0.6 0.4 0.2 1 But visually tint color is not apllied. – Alex Sfinx87 Sep 8 '11 at 11:35
here I have another solution quite similar: stackoverflow.com/questions/8490261/… good luck!!! – TurboManolo Dec 14 '11 at 12:26
feedback

2 Answers

up vote 1 down vote accepted

As of iOS 5, popoverBackgroundViewClass is available which is the way to accomplish this.

link|improve this answer
Except the buttons that appear on the nav bar are still the blue-ish colour. Or at least they are for all the things I've tried. Have you managed to tint the buttons as well? – mattjgalloway Dec 7 '11 at 15:49
feedback
self.popoverController.popoverBackgroundViewClass = [MyCustomBackgroundView class];

@interface MyCustomBackgroundView : UIPopoverBackgroundView {
@private
}
@end

@implementation MyCustomBackgroundView

@synthesize arrowOffset;
@synthesize arrowDirection;

- (id)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        self.backgroundColor = [UIColor redColor];
    }
    return self;
}

+ (UIEdgeInsets)contentViewInsets {
    return UIEdgeInsetsMake(0, 0, 1, 0);
}

+ (CGFloat)arrowHeight{
    return 0.0;
}

+ (CGFloat)arrowBase{
    return 0.0;
}

@end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.