Tôi đang cố gắng đặt kích thước phông chữ của UILabel. Không có vấn đề gì giá trị tôi đặt mặc dù kích thước văn bản dường như không thay đổi. Đây là mã tôi đang sử dụng.
[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]];