I realize that ABPeoplePicker has changed for iOS 9 but the functionality is still there and working for now. The issue I am having is that the "Group" and "Cancel" buttons are coming up as white on a white background. So very hard to see. The previous controller that this is coming from does make use of white buttons on its nav bar but of course the background is darker.
I have tried to use the following which works under iOS 8 but seems to do nothing under iOS 9:
[[UIBarButtonItem appearanceWhenContainedIn:[ABPeoplePickerNavigationController class], nil] setTintColor:[UIColor blueColor]];
I have tried to directly set it as well with the navigationcontroller.navbar.tintcolor property. That didn't work under 8 or 9.
How can I get these buttons to be visible on the contact page?
Update: I have also tried this which doesn't work either:
[[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[ABPeoplePickerNavigationController class]]] setTintColor:[UIColor blueColor]];
Update 2: I tried using the new CNContactPickerViewController
and it does the same thing with white on white.