美文网首页
swift如何同时设置多个枚举值

swift如何同时设置多个枚举值

作者: 天马行空得想法 | 来源:发表于2018-07-12 17:48 被阅读21次

    swift如何同时设置多个枚举值,有两种方式

    1.通过rawValue方法赋值
    self.tableView.autoresizingMask = UIViewAutoresizing(rawValue: UIViewAutoresizing.flexibleHeight.rawValue | UIViewAutoresizing.flexibleWidth.rawValue)

    2.通过中括号的形式赋值
    self.tableView.autoresizingMask = [.flexibleWidth,.flexibleHeight]

    相关文章

      网友评论

          本文标题:swift如何同时设置多个枚举值

          本文链接:https://www.haomeiwen.com/subject/jzvrpftx.html