1. UITitleBar: black buttons

    Short time ago we were dealing with an issue in one of our apps. It was not possible to switch the UITitleBar with custom background to black color, to achieve black buttons and not the standard blue ones. Unfortunatelly only setting the style on UIBarStyleBlackOpaque was not enough.

    UITitleBar black buttons

    But finally I’ve discovered the following solution:

    navigationBarStyle = UIBarStyleBlackOpaque;
    navigationBarTintColor = nil;
    

    6 months ago on January 20th, 2010