2012-07-23 2 views
1

내 UINavigationBar, UIBarBattunItems 및 BackButton의 사용자 지정 모양을 사용하고 있습니다. 또한 Apple의 ABPeoplePicker를 사용하여 사용자가 일부 연락처에서 선택할 수 있도록합니다. 내 문제는 사람 모양이 모달로 표시되는 동안 모양을 기본 모양으로 다시 설정하고 싶습니다.ABPeoplePicker : 사용자 지정 탐색 모음 모양 다시 설정

누구든지 이것을 달성하는 방법을 알고 있습니까?

다음과 같이 내 피커를 소개합니다.

//showing people picker do identify owner of the certificate 
ABPeoplePickerNavigationController* picker = [[ABPeoplePickerNavigationController alloc] init]; 
picker.peoplePickerDelegate = self; 
[self presentModalViewController:picker animated:YES]; 

미리 감사드립니다.

답변

0

현재 피커 앞에 다음 코드를 추가해보세요.

picker.modalTransitionStyle = UIModalTransitionStyleCoverVertical; 
picker.modalPresentationStyle = UIModalPresentationOverCurrentContext;