presentViewController 방식으로 화면을 띄우다
테스트 용으로 navigationController쓰려고
self.navigationController에 push하니 안되는 현상 발견
이럴 때 사용 법
1. 호출 시
testViewController* testviewcon = [[testViewController alloc] initWithNibName:@"testViewController" bundle:[NSBundle giftCardBundle]];// 띄을 viewcontroller 초기화
UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:testviewcon]; // navigationController의 root를 띄울 viewController로 설정
[self presentViewController:navi animated:NO completion:nil]; // 화면 전환
2. 닫을 시
[self dismissViewControllerAnimated:NO completion:nil]; // 네비게이션 화면 닫음
'프로그래밍 > iOS' 카테고리의 다른 글
[JavaScript] json 디코딩하기, json파싱 (0) | 2015.06.04 |
---|---|
[iOS] background에서 작업하기 (0) | 2015.05.14 |
[ios] method를 호출한 class알아내기 (0) | 2015.05.07 |
[iOS] UIImage에 UILabel 추가하기 (0) | 2015.05.06 |
[iOS] UIAlertController iOS8.3 버그 (0) | 2015.04.29 |