我在swift中创建我的UILabel:
let label = UILabel(frame: CGRect( x: 50,y: 50,width: 100,height: 50))
设置属性似乎很容易:
label.textColor = UIColor.redColor()
如何实现枚举类型如textAlignment?
在目标C它是
label.textAlignment = NSTextAlignmentCenter;
但在swift它似乎不工作。
这些是现在的枚举。
原文链接:https://www.f2er.com/swift/321183.html你可以做:
label.textAlignment = NSTextAlignment.Center;
或者,简写:
label.textAlignment = .Center;