最佳答案
在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
你知道问题出在哪里吗?