我正在使用 UINavigationBar、UIBarBattunItems 和 BackButton 的自定义外观。此外,我正在使用 Apple 的 ABPeoplePicker 让用户从一些联系人中进行选择。我的问题是我想将外观重置为默认外观,但前提是人员选择器以模态方式呈现。
有谁知道如何实现这一目标?
我以以下方式展示我的人员选择器。
//showing people picker do identify owner of the certificate
ABPeoplePickerNavigationController* picker = [[ABPeoplePickerNavigationController alloc] init];
picker.peoplePickerDelegate = self;
[self presentModalViewController:picker animated:YES];
提前致谢!