In my application I'm using ABPeoplePickerNavigationController to pick a contact from my address book with the following code to display the picker:
Code:
ABPeoplePickerNavigationController *ppnc = [[ABPeoplePickerNavigationController alloc] init];
ppnc.peoplePickerDelegate = self;
ppnc.displayedProperties = [NSArray arrayWithObject:[NSNumber numberWithInt:kABPersonPhoneProperty]];
[self presentModalViewController:ppnc animated:YES];
[ppnc release];
It works and the picker displays fine. Except that eventhough the language is set to Turkish on my simulator, and the regular addressbook app correctly displays in Turkish, the picker always comes up in English. Is there a way of telling the ABPeoplePickerNavigationController to display in the current language?
Thanks,
Cagan