如何更改 iPhone UITextView 或 UITextField 中的书写方向

发布于 2024-08-14 17:24:25 字数 188 浏览 6 评论 0原文

现在,如果您以从右到左的语言输入内容并点击并按住,复制和粘贴菜单将有一个额外的选项,用于将书写方向从“从左到右”更改为“从右到左”。

我想在代码中设置此选项,以便我的 UITextView 书写方向默认为从右到左。

有谁知道我该怎么做。我搜索了整个网络和 SDK,并尝试了所有方法,但没有成功。如果有人可以提供帮助,我将不胜感激。

Right now if you type something in a right to left language and tap and hold, the copy and paste menu will have an extra option for changing the writing direction form "left to right" to "right to left".

I want to set this option in the code so that my UITextView writing direction would be right to left by default.

Does anyone know how I can do that. I searched all over the web and SDK and tried everything with no luck. I would be grateful if anyone can help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

听你说爱我 2024-08-21 17:24:25

检查一下也许这会对你有帮助。

setTextAlignment:UITextAlignmentRight;

check may be this will help you.

setTextAlignment:UITextAlignmentRight;

π浅易 2024-08-21 17:24:25

希望这可以帮助

将 UITextView 中的文本按行划分,并将 NSString 从“从左到右”更改为“从右到左”非常简单

Hope this can help

divide the text in the UITextView by line,and change NSString from "left to right" to "right to left" is quite simple

花开浅夏 2024-08-21 17:24:25

如果你想在 uitextview 中设置从右到左的文本书写方向

"your UITextview".makeTextWritingDirectionRightToLeft(true)

if you want set text writing direction right to left in uitextview

"your UITextview".makeTextWritingDirectionRightToLeft(true)
恬淡成诗 2024-08-21 17:24:25

我认为你可以使用类似的东西:

Swift:

func makeTextWritingDirectionRightToLeft(_ sender: Any?)

Objective C:

(void)makeTextWritingDirectionRightToLeft:(id)sender;

在方法参考中查找

I think you can use something like:

Swift:

func makeTextWritingDirectionRightToLeft(_ sender: Any?)

Objective C:

(void)makeTextWritingDirectionRightToLeft:(id)sender;

Look it up in the Method Reference

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