2013-10-24 42 views
2

我有一个改变文本的按钮。减少第三行的UIButton标签字体大小

我想要如果按钮文本去第三行它应该减少其字体minimumScaleFactor。我使用此代码

self.option1Button.titleLabel.minimumScaleFactor = .7; 
self.option1Button.titleLabel.numberOfLines = 2; 
self.option1Button.titleLabel.adjustsFontSizeToFitWidth = TRUE; 

但是,这是行不通的。当文本到达第三行时它不会更改字体大小。

回答

4

adjustToFit只适用于单行标签。

尝试做this

//Create a string with the text we want to display. 
self.ourText = @"This is your variable-length string. Assign it any way you want!"; 

/* This is where we define the ideal font that the Label wants to use. 
Use the font you want to use and the largest font size you want to use. */ 
UIFont *font = [UIFont fontWithName:@"Marker Felt" size:28]; 

int i; 
/* Time to calculate the needed font size. 
This for loop starts at the largest font size, and decreases by two point sizes (i=i-2) 
Until it either hits a size that will fit or hits the minimum size we want to allow (i > 10) */ 
for(i = 28; i > 10; i=i-2) { 
    // Set the new font size. 
    font = [font fontWithSize:i]; 
    // You can log the size you're trying: NSLog(@"Trying size: %u", i); 

    /* This step is important: We make a constraint box 
    using only the fixed WIDTH of the UILabel. The height will 
    be checked later. */ 
    CGSize constraintSize = CGSizeMake(260.0f, MAXFLOAT); 

    // This step checks how tall the label would be with the desired font. 
    CGSize labelSize = [self.ourText sizeWithFont:font constrainedToSize:constraintSize lineBreakMode:UILineBreakModeWordWrap]; 

    /* Here is where you use the height requirement! 
    Set the value in the if statement to the height of your UILabel 
    If the label fits into your required height, it will break the loop 
    and use that font size. */ 
    if(labelSize.height <= 180.0f) 
     break; 
} 
// You can see what size the function is using by outputting: NSLog(@"Best size is: %u", i); 

// Set the UILabel's font to the newly adjusted font. 
msg.font = font; 

// Put the text into the UILabel outlet variable. 
msg.text = self.ourText; 
+0

由于某些原因,我在界面生成器中使用fontSize和height,所以这不适用于我。 –

+1

@AzkaarAli你必须在代码中做一些。我想,你的需求在界面制作工具中是不能满足的。此外,上面的'sizeWithFont'已被iOS 7中的新功能('boundingRectWithSize')所取代。 – Mundi

1

如果你想让你的按钮显示三行,你必须将numberOfLines设置为3.奇怪但是是真的。

+1

不,我只想要2行,如果文本超过2行,就应减少字体大小以适合在2行。 –