Tengo un código UILabel programáticamente. Quiero cambiar el tamaño de la etiqueta cuando presioné un botón. cómo cambiar el tamaño de esa etiqueta? este es mi códigocómo cambiar el tamaño de UILabel
UILabel *theLabel11 = [[UILabel alloc] initWithFrame:CGRectMake(0,0,100,30)];
[theLabel11 setText:@"US"];
[theLabel11 setTextAlignment:UITextAlignmentCenter];
[theLabel11 setFont: [UIFont fontWithName:@"Arial" size:13.0f]];
[theLabel11 setBackgroundColor:[UIColor orangeColor]];
[theLabel11 setTextColor:[UIColor blackColor]];
[scroll1 addSubview:theLabel11];
... u olvida ese bucle y usa mejor viewWithTag: – Till