如何删除 UITextView 底部的空格?
我正在使用 UITextView
并且我想删除 UITextview
底部的空格。
i am using UITextView
and i want to remove spaces in the bottom of the UITextview
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的东西吗?
textView.text = [textView.text stringByTrimmingCharactersInSet:[NSCharacterSetwhitespaceAndNewlineCharacterSet]];
Something like this?
textView.text = [textView.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
我已经更新了上面的代码。尝试一下。我认为你得到了想要的结果..
I have updated above code.try with it.i think you got desire result..
我假设/猜测您希望调整 UITextView 的大小以很好地容纳文本。如果是这样,我建议您进行调查:
例如:
I'm assuming/guessing you wish to resize a UITextView to accommodate the text nicely. If so, I suggest you investigate:
For example: