Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Can I set all navigation bar properties from the class rather than inside AppDelegate?

So I was wondering if there was a way to set the UINavigationBar appearance from inside the Navigation controller so it's not in the middle of AppDelegate.

So this is what I did but I am not sure how correct it is. Inside the Navigation controller class I modified the original method to set the properties and then I called it inside the method "viewWillAppear"

- (void)viewWillAppear:(BOOL)animated {
    [self setupAppearance];
}

- (void)setupAppearance {

    UINavigationBar *navigationBar = [self navigationBar];

    navigationBar.barTintColor = [UIColor colorWithRed:77.0/255.0 green:164.0/255.0 blue:191.0/255.0 alpha:1.0f];
    navigationBar.tintColor = [UIColor whiteColor];
    navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor]};

}

Thanks a lot for the help.