iPhone OS 썸네일형 리스트형 Xcode - NavController : Title 색 변경하기 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 *g.. 더보기 이전 1 다음