首页 > 其他 > 详细

UITextView 相关知识点

时间:2015-04-21 14:17:57      阅读:391      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!