6
二进制运算符“ |” 不能应用于两个UIViewAutoresizing操作数
在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 知道可能是什么问题吗?
193
ios
swift
cocoa-touch
swift2