gpt4 book ai didi

enums - swift 。 UILabel 文本对齐

转载 作者:IT王子 更新时间:2023-10-29 04:58:09 25 4
gpt4 key购买 nike

我在 swift 中创建了我的 UILabel:

let label = UILabel(frame: CGRect( x: 50, y: 50, width: 100, height: 50))

设置属性似乎很容易:

label.textColor = UIColor.redColor()

如何实现像 textAlignment 这样的枚举类型?在 Objective C 中是

label.textAlignment = NSTextAlignmentCenter;

但在 swift 中它似乎不起作用。

最佳答案

这些现在是 enum

你可以这样做:

label.textAlignment = NSTextAlignment.center;

或者,简写:

label.textAlignment = .center;

swift 3

label.textAlignment = .center

关于enums - swift 。 UILabel 文本对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24034300/

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