我有一個以編程方式編碼的UILabel。我想在按下按鈕時更改標籤的大小。如何更改該標籤的大小?這是我的代碼如何更改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];
...或忘記該循環,並更好地使用viewWithTag: – Till 2011-05-21 08:56:39