UITextView 自动大小

Posted

技术标签:

【中文标题】UITextView 自动大小【英文标题】:UITextView autoSize 【发布时间】:2011-01-14 22:10:47 【问题描述】:

我认为这将是一件容易的事情,因为人们希望经常这样做,但我已经四处搜索并尝试了不同的方法,但似乎没有任何效果。

我要做的就是创建一个包含两行文本的 UITextView。

如果文本太长,分成 3 行,我想自动调整字体大小,直到它适合 2 行。

从概念上讲,我打算做一个递归函数,不断缩小文本直到它适合两行(基于文本字段的高度),但我无法完成。

非常感谢任何建议。

【问题讨论】:

它必须是可编辑的还是 UILabel 可以工作? 文本不可编辑,我基本上是在找一个有 2 行的 UILabel 【参考方案1】:

使用 UILabel 并设置以下属性:

adjustsFontSizeToFitWidth = 是; minimumFontSize = [UIFont systemFontofSize: 10]; // 或者任何适合你的应用的东西 numberOfLines = 2;

【讨论】:

它似乎不起作用。如果有多个类似的文本,我认为您不能自动调整大小。【参考方案2】:

如果其他人遇到这个问题,我在这里找到了答案:

http://www.11pixel.com/blog/28/resize-multi-line-text-to-fit-uilabel-on-iphone/

//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;

【讨论】:

【参考方案3】:

我认为这个问题有点晚了,但由于这是谷歌对该查询的最高结果,因此可能会遵循更合适的(复制和粘贴)解决方案

- (BOOL)textViewShouldEndEditing:(UITextView *)textView

if (textView.contentSize.height > textView.frame.size.height) 
  int fontIncrement = 1;
    while (textView.contentSize.height > textView.frame.size.height) 
        textView.font = [UIFont fontWithName:@"Copperplate" size:25.0 - fontIncrement];
        fontIncrement++;

    


else 
    int fontIncrement = 1;
    while (textView.font.pointSize < 25.0) 
        textView.font = [UIFont fontWithName:@"Copperplate" size:8.0 + fontIncrement];
        fontIncrement++;

    

return YES;

在上面 25 的代码中是你想为 textview 设置的 maxFontSize 变量。

附言(BOOL)textViewShouldEndEditing: 是 uitextview 的委托方法之一,在编辑完成和键盘被重新签名之前调用,因此您还应该在视图控制器中适当地包含委托协议。

【讨论】:

以上是关于UITextView 自动大小的主要内容,如果未能解决你的问题,请参考以下文章

UITextView 使用自动布局自动调整大小

UIPopOver、UITextView 和自动调整大小

自动布局图像大小应根据 UItextview 文本增加

在 UIScrollView 中自动调整 UITextView 的大小

UIScrollView 内的自动布局 UITextView 大小不正确

使用自动布局问题在 UIScrollView 中调整 UITextView 的大小