在Swift 2.0中获取此错误。
二进制运算符“ |” 不能应用于两个UIViewAutoresizing操作数
这是代码:
let view = UIView(frame: CGRect(x: 0, y: 0, width: 320, height: 568))
addSubview(view)
view.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight
知道可能是什么问题吗?
2
实际上与Swift 2.0中的问题相同-二进制运算符“ |” 不能应用于两个UIUserNotificationType操作数。
—
Martin R