반응형
iOS에서 화면을 전환 하여 스택을 쌓는 방법은 2가지가 있다.
애니메이션이 옆으로 넘어가는 navigationController 와 위로 올라오는 presentViewController가 있다.
사용법은
ThirdScrollView *view = [[ThirdScrollView alloc]initWithNibName:@"ThirdScrollView" bundle:nil];
[self.navigationController pushViewController:view animated:YES];
FirstStackTestController *view = [[FirstStackTestController alloc]initWithNibName:@"FirstStackTestController" bundle:nil];
[self presentViewController:view animated:YES completion:nil];
스택 삭제...즉 뒤로가기는
[self.navigationController popViewControllerAnimated:YES];
[self dismissViewControllerAnimated:YES completion:nil];
반응형
'프로그램 > iOS' 카테고리의 다른 글
iOS second Data 변형 (0) | 2016.03.15 |
---|---|
AppDelegate 실행순서 (0) | 2016.03.14 |
동적으로 생성한 View의 버튼 이벤트 (0) | 2016.03.04 |
iOS Main을 생성한 xib로 설정하기. (0) | 2016.03.03 |
iOS 라벨 부분 글자 색상변경 (0) | 2016.03.02 |