본문 바로가기

□컴퓨터 관련/★iPhone Developer

Xcode - NavController : Title 색 변경하기


NavigationControllertoolbar 제목 및 색변경을 할려고 하는데

조금 애먹었네요. (초보 개발자..ㅠㅠ)

여기저기 검색해본 결과,

UILabel을 만들어서 값을 넘겨주니 되더라구요.

소스는 아래와 같습니다.

// navigation contorl bar title color

UILabel *titleLabel = [[UILabel allocinit];


titleLabel.frame = CGRectMake(00250100);

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];


결과는


해보시면 아실테니, 특별히 스샷은 올리지 않겠습니다.