に がlabel
含まれていUIView
ます。境界は and と同じに設定されるUIView
ため、label
は常に is と同じ大きさである必要がview
あります。
self.label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
[self.label setText:@"3"];
[self.label setTextColor:[[UIColor blackColor] colorWithAlphaComponent:0.2f]];
[self.label setFont:[UIFont fontWithName:@"Futura-CondensedExtraBold" size:400]];
[self.label setBackgroundColor:[UIColor clearColor]];
[self.label setTextAlignment:NSTextAlignmentCenter];
[self.label setNumberOfLines:1];
[self.label setMinimumScaleFactor:0.1];
[self.label setAdjustsFontSizeToFitWidth:YES];
[self addSubview:self.label];
ご覧のとおり、私はfont size
を 400 に設定していsetMinimumScaleFactor
ます。しかし、それは私にとってはうまくいきません。助言がありますか…?