获取 UItextView 中的行数
我正在尝试构建一个支持根据内容可变大小文本框的应用程序。 UITextView 的大小应增加最多 4 行,然后激活滚动。
输入文本时我无法获取行数。
请建议我一些方法来做到这一点。任何示例代码片段将受到高度赞赏。
提前致谢!!
I am trying to build an app that supports variable size text box depending on the content. The size of the UITextView should increase up to 4 lines and then activate the scrolling.
I am not able to get the number of lines when the text is being entered.
Please suggest me some way to do that. Any sample code snippet would be highly appreciated.
Thanks in advance!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我尝试了一种临时解决方案来解决这个问题。可以在视图控制器的 -
(void)textViewDidChange:(UITextView *)textView
方法中添加以下代码,并将委托更改为 IB 中的文件所有者。希望这有帮助。如果有更好的解决方案请帮忙。
谢谢
I tried one temporary solution to this problem. One can add the following piece of code in -
(void)textViewDidChange:(UITextView *)textView
method of your view controller and change the delegate to the file owner in IB.Hope this helps. If any better solutions kindly help out.
Thanks