UITextView 只是水平滚动帮助
我有一个 UITextView ,我想水平显示它的文本,我的 UITextView 有一个静态宽度,
[[UITextView alloc] initWithFrame:CGRectMake(0, 0, 161, 23)];
所以当 UITextView 的文本长度大于 23 时,我需要 UITextView 水平滚动,请帮助我...
I have a UITextView , i want show its' text in horizontal, my UITextView has a static width
[[UITextView alloc] initWithFrame:CGRectMake(0, 0, 161, 23)];
so when the length of UITextView's text is greater than 23, i need UITextView horizontal scrolling , please help me...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
把这个代码
初始化后
祝你好运
put this code
after initializing
Good luck
实现此文本视图委托方法。
现在,当输入的字符大于 23 时,我们将文本视图的内容大小设置为更高的值,以便自动启用水平滚动。
Implement this text view delegate method.
Now when the characters entered becomes greater than 23, we set the content size of the text view to a higher value so that horizontal scrolling gets enabled automatically.
使用这2行。
Use this 2 lines.
如果您正在使用界面生成器,则只需检查属性即可。
默认情况下此属性未启用
If you are using interface builder then just check the property.
by default this property is not enable