iPhone 中的 UItextView 对齐段落

发布于 2024-11-28 12:50:20 字数 104 浏览 1 评论 0原文

我想在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月依秋水 2024-12-05 12:50:20

照片说明了一切。您可以使用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)#>

enter image description here

吃不饱 2024-12-05 12:50:20

证明段落合理的正确方法是:

    YOURTEXTVIEW.textAlignment = NSTextAlignmentJustified;

The correct way To justify a paragraphy is:

    YOURTEXTVIEW.textAlignment = NSTextAlignmentJustified;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文