8
iOS:プログラムでUILabelのフォントサイズを設定する
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]];