NavigationController 의 toolbar 제목 및 색변경을 할려고 하는데
조금 애먹었네요. (초보 개발자..ㅠㅠ)
여기저기 검색해본 결과,
UILabel을 만들어서 값을 넘겨주니 되더라구요.
소스는 아래와 같습니다.
// navigation contorl bar title color
UILabel *titleLabel = [[UILabel alloc] init];
titleLabel.frame = CGRectMake(0, 0, 250, 100);
titleLabel.backgroundColor = [UIColor clearColor];
titleLabel.textColor = [UIColor greenColor];
titleLabel.text = @"Title Name";
UIFont *generalFont =
[UIFont fontWithName:@"Verdana-Bold" size:16.0];
titleLabel.font = generalFont;
titleLabel.textAlignment = UITextAlignmentLeft;
self.navigationItem.titleView = titleLabel;
[titleLabel release];
[generalFont release];
결과는
해보시면 아실테니, 특별히 스샷은 올리지 않겠습니다.
'□컴퓨터 관련 > ★iPhone Developer' 카테고리의 다른 글
뷰 컨트롤러(UIViewController)의 회전관련 메서드 (0) | 2010.12.13 |
---|---|
FlowCover reload (0) | 2010.12.08 |
iAds - 광고 달아보기! (0) | 2010.12.04 |
아이폰 OS 개발 자료 총정리 (0) | 2010.12.02 |
gcc failed 발생시 (0) | 2010.11.24 |
xCode NSString 문자열 처리방법 (0) | 2010.07.07 |
Xcode 회사주석 바꾸기. (0) | 2010.07.07 |