[IOS] - ABUnknownPersonViewController Back Button, 전화번호부 저장 View 백버튼
IOS ( Object-C ) 2014. 9. 12. 09:46@try {
ABUnknownPersonViewController *abView = [[ABUnknownPersonViewController alloc] init];
UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:abView];
abView.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemCancel
target:target
action:@selector(setCloseAddressView)];
abView.unknownPersonViewDelegate = target;
abView.allowsAddingToAddressBook = YES;
abView.displayedPerson = newPerson;
[target presentModalViewController:nc animated:YES];
} @catch(NSException *exception) {
NSLog(@"Exception : %@", exception);
}
'IOS ( Object-C )' 카테고리의 다른 글
[IOS] - UIScrollView 스크롤 최상위로 보내기 (0) | 2014.09.19 |
---|---|
[IOS] - IOS 카메라 모듈 사용 가능여부, is Avaliable Camera Module (0) | 2014.09.16 |
[IOS] - IOS 문자 보내기 Activity Intent, MFMessageComposeViewController (0) | 2014.09.11 |
[IOS] - IOS 문자열 자르기 substringWithRange (0) | 2014.09.11 |
[IOS] - IOS Timer 아이폰 타이머 사용법 (0) | 2014.09.03 |