ios - 当按下返回键时,UITableView 中的 UITextView 不会向上滚动
<p><p>我想创建一个具有类似 iOS 7 的 Notes 应用程序功能的应用程序。基本上顶部有一行有日期和时间。</p>
<p>我的解决方案是将 UITextView 放在 UITableView 中。第一行是带有日期和时间的 UILabel,第二行是 UITextView。</p>
<p>我根据 UITextView ContentSize 改变了 UITextView 和 UITableViewCell 的高度。</p>
<p>问题是 UITextView 的尺寸很大,所以当用户按回车键时它不会自动滚动。</p>
<p>有没有办法让它正常滚动?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>UITextView</code> 是 <code>UIScrollView</code> 的子类。我将建议一种实现类似功能的替代方法。添加标签 View 作为 TextView 的 subview ,并设置标签高度的<code>contentInset</code>顶部值。</p>
<pre><code>UILabel* label = ;
label.text = @"Test";
;
CGRect frame = label.frame;
frame.origin.y -= frame.size.height;
;
;
;
</code></pre>
<p>示例项目:
<a href="http://sdrv.ms/16JUlVD" rel="noreferrer noopener nofollow">http://sdrv.ms/16JUlVD</a> </p></p>
<p style="font-size: 20px;">关于ios - 当按下返回键时,UITableView 中的 UITextView 不会向上滚动,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19182404/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19182404/
</a>
</p>
页:
[1]