10

我有一个UITextView内部 a在构建 fromUIScrollView上工作得非常好,但是现在用它构建不能正常工作,即使在.iOS 6xcode 4.xxcode 5iOS 6

问题是文本以屏幕宽度换行,即使UITextViewUIScrollView具有较大的宽度。我使用这段代码来计算新的宽度和高度UITextView,即使 textview 向左/向右滚动,文本也会被换行,就好像宽度只是屏幕的宽度一样。

谢谢

self.responceTextView.text = [NSString stringWithFormat:@"%@%@",_responceTextView.text,responce];
[self textViewDidChange:self.responceTextView];

- (void)textViewDidChange:(UITextView *)textView
{
    // Recalculate size of text field
    CGSize maxSize = CGSizeMake(MAXFLOAT, MAXFLOAT);
    CGSize reqSize = [textView.text sizeWithFont:[UIFont fontWithName:@"Courier" size:12] constrainedToSize:maxSize lineBreakMode:NSLineBreakByClipping];

    self.responceTextView.frame = CGRectMake(0, 0, reqSize.width+16, reqSize.height+16);

    // Resize scroll view if needs to be smaller so text stays at top of screen
    CGFloat maxScrollHeight = maxScrollViewSize.size.height;
    if (self.responceTextView.frame.size.height < maxScrollHeight) {
        self.responceScrollView.frame = CGRectMake(self.responceScrollView.frame.origin.x, self.responceScrollView.frame.origin.y, self.responceScrollView.frame.size.width, self.responceTextView.frame.size.height);
    } else {
        self.responceScrollView.frame = maxScrollViewSize;
    }

    // Set content size
    self.responceScrollView.contentSize = CGSizeMake(self.responceTextView.frame.size.width, self.responceTextView.frame.size.height);

    [self scrollToCursor];
}

编辑 - -

好的,所以它似乎sizeWithFont在 iOS 7 中已被弃用。奇怪的是我如何没有收到编译器警告。它在 iOS 6 上不起作用仍然没有意义(或者在使用 iOS 7 SDK 构建时它完全删除了?)

我已经尝试了这两种替代方案,但得到的尺寸完全相同。

NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:
                                [UIFont fontWithName:@"Courier" size:12], NSFontAttributeName,
                                nil];
CGRect rect = [textView.text boundingRectWithSize:maxSize options:NSLineBreakByClipping | NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading attributes:attributes context:nil];

返回:{{0, 0}, {439.27148, 168}}

CGSize rect2 = [textView.text sizeWithAttributes:attributes];

返回:{439.27148, 168}

上面的原始返回{439.27148, 168}

他们都应该返回更广阔的视野。

编辑 2 ---- 从上面看来,返回的框架是正确的(439 宽),但是它的文本仍然被文字包裹在 textview 中。

4

4 回答 4

18

尝试使用:

[textView.text boundingRectWithSize:CGSizeMake(txtFrame.size.width, CGFLOAT_MAX)
                           options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading
                           attributes:[NSDictionary dictionaryWithObjectsAndKeys:textView.font,NSFontAttributeName, nil] context:nil];

字符串测量似乎很麻烦。对于我所做的测试,这是唯一能提供正确尺寸的选项组合。

我在 iOS7 中成功使用了以下代码(它UITextField具有最小和最大高度。当文本的高度变大MAX_HEIGHT_MESSAGE_TEXTBOX时,滚动条出现在 中UITextField)。

const float MAX_HEIGHT_MESSAGE_TEXTBOX = 80;
const float MIN_HEIGHT_MESSAGE_TEXTBOX = 30;


- (void)setFrameToTextSize:(CGRect)txtFrame textView:(UITextView *)textView
{

    if(txtFrame.size.height > MAX_HEIGHT_MESSAGE_TEXTBOX)
    {
        //OK, the new frame is to large. Let's use scroll
        txtFrame.size.height = MAX_HEIGHT_MESSAGE_TEXTBOX;
        textView.scrollEnabled = YES;
        [textView scrollRangeToVisible:NSMakeRange([textView.text length], 0)];
    }
    else
    {
        if (textView.frame.size.height < MIN_HEIGHT_MESSAGE_TEXTBOX) {
             //OK, the new frame is to small. Let's set minimum size
            txtFrame.size.height = MIN_HEIGHT_MESSAGE_TEXTBOX;
        }
        //no need for scroll
        textView.scrollEnabled = NO;
    }
    //set the frame
    textView.frame = txtFrame;
}

- (void)setframeToTextSize:(UITextView *)textView animated:(BOOL)animated
{
    //get current height
    CGRect txtFrame = textView.frame;

    //calculate height needed with selected font. Note the options.
    //append a new line to make space for the cursor after user hit the return key
    txtFrame.size.height =[[NSString stringWithFormat:@"%@\n ",textView.text]
                           boundingRectWithSize:CGSizeMake(txtFrame.size.width, CGFLOAT_MAX)
                           options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading
                           attributes:[NSDictionary dictionaryWithObjectsAndKeys:textView.font,NSFontAttributeName, nil] context:nil].size.height;

    if (animated) {
        //set the new frame, animated for a more nice transition
        [UIView animateWithDuration:0.2 delay:0.0 options:UIViewAnimationOptionCurveEaseOut |UIViewAnimationOptionAllowAnimatedContent animations:^{
            [self setFrameToTextSize:txtFrame textView:textView];
        } completion:nil];
    }
    else
    {
        [self setFrameToTextSize:txtFrame textView:textView];
    }
}

- (void)textViewDidChange:(UITextView *)textView
{
    [self setframeToTextSize:textView animated:YES];
}

编辑

lineBreakMode当字符串测量正确时,您可能需要更改UITextView's textContainer. (NSTextContainer是 iOS7 中的一个新类,包含有关如何布局文本的信息):

textView.textContainer.lineBreakMode = NSLineBreakByCharWrapping; // default is NSLineBreakByWordWrapping 

祝你好运!

于 2013-09-26T12:32:08.430 回答
2

方法sizeWithFont:(UIFont *)font constrainedToSize ..."已在 iOS 7 中弃用。

它会正常运行。

在 iOS 7 中查看它的替代品

实例方法NSString

-(CGRect)boundingRectWithSize:(CGSize)size options:(NSStringDrawingOptions)options attributes:

(NSDictionary *)attributes context:(NSStringDrawingContext *)context

检查这个答案。 替换已弃用的 sizeWithFont:在 iOS 7 中?

于 2013-09-20T08:57:21.927 回答
0

我认为您想计算内容大小,以便您也可以增加滚动视图的内容大小。如果是,请使用此链接,https://stackoverflow.com/a/19152955/1023083

于 2013-10-03T07:13:24.250 回答
0

回复“谢谢,但这似乎不能解决我的问题。我同时使用灵活的宽度和高度。看起来我得到了正确的尺寸,因为 textview 在两个方向上滚动得足够多,但是文本本身仍在自动换行。”

我通过 [textView sizeToFit] 解决了这个问题;

于 2013-10-10T20:14:58.270 回答