iOS: ustaw rozmiar czcionki UILabel programowo

Próbuję ustawić rozmiar czcionki UILabel. Bez względu na wartość, jaką wkładam, rozmiar tekstu nie wydaje się zmieniać. Oto kod, którego używam.

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

questionAnswers(8)

yourAnswerToTheQuestion