最新消息:20210816 当前crifan.com域名已被污染,为防止失联,请关注(页面右下角的)公众号

【已解决】swift代码出错:Binary operator | cannot be applied to two UIViewAutoresizing operands

Swift crifan 4450浏览 0评论

【背景】

参考:

MHTabBarController/MHTabBarController.m at master · hollance/MHTabBarController · GitHub

尝试把OC代码改为swift代码,借鉴的去实现自己的自定义的tab,结果代码:

1
2
3
4
class RecordTabBarController : UIViewController {  
    override func viewDidLoad() {
        super.viewDidLoad()      
        self.view.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight

出错:

RecordTabBarController.swift:17:71: Binary operator ‘|’ cannot be applied to two ‘UIViewAutoresizing’ operands

swift Binary operator cannot be applied to two operands

 

【解决过程】

1.搜:

swift Binary operator | cannot be applied to two UIViewAutoresizing operands

参考:

ios – Binary operator ‘|’ cannot be applied to two UIViewAutoresizing operands – Stack Overflow

去改为:

1
self.view.autoresizingMask = [UIViewAutoresizing.FlexibleWidth, UIViewAutoresizing.FlexibleHeight]

即可。

 

【总结】

swift新语法,把:

1
self.view.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight

换成:

1
self.view.autoresizingMask = [UIViewAutoresizing.FlexibleWidth, UIViewAutoresizing.FlexibleHeight]

才可以。

转载请注明:在路上 » 【已解决】swift代码出错:Binary operator | cannot be applied to two UIViewAutoresizing operands

发表我的评论
取消评论

表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
84 queries in 0.350 seconds, using 22.13MB memory