iOS: defina o tamanho da fonte da UILabel Programaticamente

Estou tentando definir o tamanho da fonte de um UILabel. Não importa qual valor eu coloquei, embora o tamanho do texto não pareça mudar. Aqui está o código que estou usando.

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