美文网首页
swift 使用masonry注意

swift 使用masonry注意

作者: 星空WU | 来源:发表于2021-01-07 22:12 被阅读0次

首先在swift 中,约束的参数值和目标对象是在新的括号中去书写!

swift不允许像下面这样一句书写,会报隐形解包错误

//make?.left.mas_equalTo()(self.contentView)?.mas_offset()(10)

 //像下面的写法都没问题

  //make?.left.mas_equalTo()(self.contentView)?.offset()(10)

    //make?.left.offset()(10)

   make?.top.mas_equalTo()(self.contentView.mas_top)?.offset()(10)

    make?.width.mas_equalTo()(50)

     make?.height.mas_equalTo()(50)

相关文章

网友评论

      本文标题:swift 使用masonry注意

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