스토리보드로 변경되면서 알수 없이 힘든게 많다.
네비게이션 바 스토리보드 환경에서 커스텀 네비게이션 바 만들기
위의 동영상에서 BACK button 으로 돌아가는 소스는 이렇습니다.
-(void)gettoBack:(id)sender{
[self.navigationController popViewControllerAnimated:YES];
}
또한 찾다보니 정리할게 있어 아래 정리해놓습니다.
NSInteger red = 95;
NSInteger green = 100;
NSInteger blue = 130;
[self.navigationController.navigationBar setTintColor:[UIColor colorWithRed:red/255.0f green:green/255.0f blue:blue/255.0f alpha:1.0]];
or
[[UINavigationBar appearance] setTintColor:[UIColor redColor]];
or
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"CustomNavBG.png"] forBarMetrics:UIBarMetricsDefault];
or
self.navigationController.title = @"Custom Nav";
'개발도구 > iOS - 아이폰 개발' 카테고리의 다른 글
[iphone[ calender source 아이폰 달력 소스 (0) | 2012.07.23 |
---|---|
[iphone] table cell 옵션 (0) | 2012.07.20 |
[아이폰] 아이폰 기기등록, 아이폰 기기 테스트 (0) | 2012.07.18 |
[iphone] 공백 제거 (0) | 2012.07.18 |
[iphone] create Json like twiiter json (0) | 2012.07.16 |