ios - 获取 UITextView 的实际高度
<p><p>我有一个 NSAttributedString 被传递到 UITextView:</p>
<pre><code>NSAttributedString *str = @"A really long string ... that continues for awhile";
</code></pre>
<p>字符串的长度是随机的,我想将它传递给 UITextView。</p>
<pre><code>myTextView.attributedText = str;
</code></pre>
<p>我需要 UITextView 的宽度为 300,但是如何找到高度?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果我没记错的话,你可以这样做:</p>
<pre><code>;
</code></pre>
<p>然后从 <code>myTextView.bounds.size.height</code> 中检索高度。请注意,虽然 <code>UITextView</code>s 还会在边缘添加一些填充,因此您可能需要从高度中减去它。</p>
<p>如果我弄错了,这里有一个不太干净但可行的替代方案:</p>
<pre><code>UILabel *label = [ initWithFrame:CGRectMake(0, 0, 300.f, yourMaxHeight)];
label.attributedText = myTextView.attributedText;
label.numberOfLines = INFINITY;
;
CGFloat height = label.bounds.size.height;
</code></pre>
<p>这当然不包括 <code>UITextView</code> 填充。</p></p>
<p style="font-size: 20px;">关于ios - 获取 UITextView 的实际高度,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/28075917/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/28075917/
</a>
</p>
页:
[1]