码迷,mamicode.com
首页 > 其他好文 > 详细

UITextView 相关知识点

时间:2015-04-21 14:18:13      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

1.得到UITextView的高度

- (CGRect)contentSizeRectForTextView:(UITextView *)textView

{

    [textView.layoutManager ensureLayoutForTextContainer:textView.textContainer];

    CGRect textBounds = [textView.layoutManager usedRectForTextContainer:textView.textContainer];

    CGFloat width =  (CGFloat)ceil(textBounds.size.width + textView.textContainerInset.left + textView.textContainerInset.right);

    CGFloat height = (CGFloat)ceil(textBounds.size.height + textView.textContainerInset.top + textView.textContainerInset.bottom);

    return CGRectMake(0, 0, width, height);

}

 

2.

UITextView 相关知识点

标签:

原文地址:http://www.cnblogs.com/rollrock/p/4444049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!