在创建 UIView 并使其子视图也调整大小后,是否有一种快速简便的方法来调整它的大小?
我有一个名为 AnagramLetter 的自定义 UIView 子类,其实现和接口代码如下所示:
@interface AnagramLetter : UIView{
UILabel *letterLbl;
UIImageView *letterBG;
}
@property (nonatomic, retain) UILabel *letterLbl;
@property (nonatomic, retain) UIImageView *letterBG;
@end
@implementation AnagramLetter
@synthesize letterLbl,letterBG;
- (id)initWithFrame:(CGRect)frame
{
frame = CGRectMake(0, 0, 166, 235);
CGRect lblFrame = CGRectMake(1, 1, 164,164);
self = [super initWithFrame:frame];
[self setAutoresizesSubviews:YES];
if (self) {
// Initialization code
letterBG = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"anagram_correct_bg.png"]];
[self addSubview:letterBG];
letterLbl = [[UILabel alloc] initWithFrame:lblFrame];
letterLbl.backgroundColor = [UIColor clearColor];
letterLbl.textColor = [UIColor blackColor];
letterLbl.textAlignment = UITextAlignmentCenter;
letterLbl.numberOfLines = 0;
letterLbl.minimumFontSize = 50;
letterLbl.font = [UIFont boldSystemFontOfSize:144];
letterLbl.adjustsFontSizeToFitWidth = YES;
[self addSubview:letterLbl];
}
return self;
}
@end
当我按下 UI 上的按钮时,我调用了一个方法,该方法生成上述项目的列表并沿其 X 轴填充 UIView,为给定字符串中的每个字符创建一个 UIView。在我这样做之前,我得到了 UIView(称为 anagramHolder)的尺寸,除以单词中的字符数。然后我在 UIView 初始化后设置它的边界/框架,但到目前为止,创建的 AnagramLetter 视图的行为没有变化。
下面是我用来获取尺寸、更改创建的子类的边界并将项目添加到 anagramHolder UIView 的代码。
- (void) createAnagram {
float aWidth = 166.0;
float aHeight = 235.0;
CGRect rect = [anagramHolder bounds];
if (!anagramCreated){
for (int i=0; i<[word length]; i++) {
AnagramLetter *a;
if ((rect.size.width / [scrambled length]) < 166){
float percentDiff = ((rect.size.width / [scrambled length]) / 166);
aWidth = (rect.size.width / [scrambled length]);
aHeight = aHeight * percentDiff;
CGRect newBounds = CGRectMake(0, 0, aWidth, aHeight);
a = [[AnagramLetter alloc] initWithFrame:newBounds];
}
else { a = [[AnagramLetter alloc] init]; }
[a setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
[a setAutoresizesSubviews:YES];
CGPoint pos;
pos.x = (i * (rect.size.width / [scrambled length])) + (aWidth/2);
pos.y = (rect.size.height/2);
[a setCenter:pos];
[a.letterLbl setText:[NSString stringWithFormat:@"%c",[scrambled characterAtIndex:i]]];
a.tag = i;
[anagramHolder addSubview:a];
[anagramLetters addObject:a];
[a release];
}
}
anagramCreated = YES;
[self getAnagramResult];
}