ios - 在 uitextview 中获取字符串的结尾
<p><p>我想创建一个消息框,就像 Telegram 和其他聊天一样,在框的底部有时间。</p>
<p>但如果文本在行尾结束,时间标签应该在下一行,否则,应该在同一行。</p>
<p>所以,我想要这样的东西:
<img src="/image/zhZJ9.jpg" alt="new line for date when content is goes until the end"/> </p>
<p>如何在我的 xib 中或以编程方式完成此操作?</p>
<p>谢谢你,</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以计算 TextView 中最后一个字符的位置并检查是否有足够的空间放置时间标签然后显示它,否则将其添加到新行。 </p>
<pre><code>UITextPosition *Pos2 = ;
UITextPosition *Pos1 = ;
UITextRange *range = ;
CGRect lastCharRect = ;
CGFloat freeSpace = textView.frame.size.width - lastCharRect.origin.x - lastCharRect.size.width;
if (freeSpace > requiredWidthForTimeLabel) {
//add time label to the last line
} else {
//add time label on a new line
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在 uitextview 中获取字符串的结尾,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/31092546/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/31092546/
</a>
</p>
页:
[1]