A quick iPhone question, I currently use a people picker in my application, I use a black navigation bar in my application but the people picker displays in the default blue color.
I have tried:
picker.navigationBar.backgroundColor = [UIColor blackColor];
However it still displays in the blue color.
Is it possible to change the color of the navigation bar on the people picker? Or is it always going to be blue as it is a system Modal view?
EDIT:
Using the following works for the color:
picker.navigationBar.tintColor = [UIColor blackColor];
However using:
picker.title = @"MyText";
or
picker.navigationItem.title=@"MyText";
or
self.title=@"MyText";
Doesn't work, the title always remains as "All Contacts"