I use ABPeoplePickerNavigationController
to get all contacts. I change the tintColor with [[UIBarButtonItem appearanceWhenContainedIn:[ABPeoplePickerNavigationController class], nil] setTintColor:[UIColor whiteColor]];
, but when it push, the backItem <Contacts
is still blue.
I tried this
`[[UIBarButtonItem appearanceWhenContainedIn:[ABPeoplePickerNavigationController class], nil] setTintColor:[UIColor whiteColor]];`
_picker.topViewController.navigationController.navigationBar.tintColor = [UIColor whiteColor];
and before push
[[UIBarButtonItem appearanceWhenContainedIn:[ABPersonViewController class], nil] setTintColor:[UIColor whiteColor]];
,
it didn't work. How to change it?
try with following
code
..