gpt4 book ai didi

ios - UITextView 不改变 NSTextAlignment 属性

转载 作者:搜寻专家 更新时间:2023-10-31 21:58:34 31 4
gpt4 key购买 nike

self.descriptionTextView.textAlignment = NSTextAlignment.Center
println(self.descriptionTextView.textAlignment.rawValue)

4

表示默认的textAlignment值(NSTextAlignment.Natural)。

我在 Storyboard中创建了 UITextView,并使用右侧的按钮手动将对齐方式设置为居中。

当我运行该应用程序时,文本继续来自左侧。

有人知道为什么会这样吗?

(我使用的是最新版本的 XCode,使用 UITextField 时似乎没有出现这种情况)

最佳答案

与 UITextField 不同,您不能在编辑 UITextView 的文本之前设置 textAlignment。问题是在设置对齐后设置文本属性。

请务必设置文本,然后按如下方式对齐:

self.descriptionTextView.text = ""
self.descriptionTextView.textAlignment = NSTextAlignment.Center

关于ios - UITextView 不改变 NSTextAlignment 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27732731/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com