<네비게이션바 숨기기>
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self navigationController].navigationBarHidden = YES;
}
// or
- (void)viewDidDisappear:(BOOL)animated
{
[self navigationController].navigationBarHidden = YES;
}
반응형
'Programming > iOS - ObjC' 카테고리의 다른 글
UITableView - 더보기 버튼 추가 (disclosure) (0) | 2010.11.26 |
---|---|
UITableView - 글자크기 수정 (0) | 2010.11.26 |
UITableView - 리스트목록에 하위제목 붙이는 방법 (0) | 2010.11.26 |
UITableView - 내용 넣기 (0) | 2010.11.22 |
UILabel - Line수 설정 (0) | 2010.11.22 |
UINavigationBar - 뒤로 버튼 이름변경 (0) | 2010.11.22 |
UINavigationBar - 버튼 달기 (0) | 2010.11.22 |
UINavigationBar - 타이틀 달기 (0) | 2010.11.22 |
Framework 생성법 & 사용법 (0) | 2010.11.22 |
Static Library를 project에 추가하는 방법 (0) | 2010.09.02 |