iPhone 中的 UItextView 对齐段落
我想在使用 xCode 的 iPhone 中使用 UITextView
来调整段落的合理性。
我应该改变什么属性来做到这一点。
提前致谢
I want to justify a paragraph using UITextView
in an iPhone using xCode.
What property should I change to do this.
Thanks In Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
照片说明了一切。您可以使用
Alignment
控件来左对齐、居中或右对齐文本。顺便说一下,当您转到界面构建器时,选择
UItextView
&然后设置这些属性...从代码中您可以执行 -
[yourTextView setTextAlignment:<#(UITextAlignment)#>
Photo says it all. You could use the
Alignment
control to left, center or right justify text.By the way this is got when you go to Interface builder, select that
UItextView
& then set these properties...From code you could do -
[yourTextView setTextAlignment:<#(UITextAlignment)#>
证明段落合理的正确方法是:
The correct way To justify a paragraphy is: