UILabel의 글꼴 크기를 설정하려고합니다. 어떤 값을 넣어도 텍스트 크기는 변하지 않는 것 같습니다. 내가 사용하는 코드는 다음과 같습니다.
[self setTitleLabel:[[UILabel alloc] initWithFrame:CGRectMake(320.0,0.0,428.0,50.0)]];
[[self contentView] addSubview:[self titleLabel]];
UIColor *titlebg = [UIColor clearColor];
[[self titleLabel] setBackgroundColor:titlebg];
[[self titleLabel] setTextColor:[UIColor blackColor]];
[[self titleLabel] setFont:[UIFont fontWithName:@"System" size:36]];