码迷,mamicode.com
首页 > 其他好文 > 详细

第13天第12天 Constraints priority

时间:2017-10-12 16:59:21      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:ext   int   make   constrain   ram   hat   tin   span   class   

1.Constraints priority

将evInputView的高度约束的priority设为750,evInputView的inputTextView如果不设高度约束,那么高度就是defaultInputViewH,如果设了高度,那么就是这个高度.

 

        evInputView.snp.remakeConstraints { (make) in

            make.left.right.equalTo(0)

            make.bottom.equalTo(bottom)

            make.height.equalTo(defaultInputViewH).priority(750)

        }

 

 

        inputTextView.snp.remakeConstraints { (make) in

            make.top.equalTo(textViewFrame.top)

            make.bottom.equalTo(textViewFrame.bottom)

            make.left.equalTo(textViewFrame.left)

            make.right.equalTo(textViewFrame.right)

        }

 

        inputTextView.snp.remakeConstraints { (make) in

            make.top.equalTo(textViewFrame.top)

            make.bottom.equalTo(textViewFrame.bottom)

            make.left.equalTo(textViewFrame.left)

            make.right.equalTo(textViewFrame.right)

            make.height.equalTo(height)

        }

 

 

https://segmentfault.com/a/1190000004650551

https://github.com/February12/YLBaseChat/

第13天第12天 Constraints priority

标签:ext   int   make   constrain   ram   hat   tin   span   class   

原文地址:http://www.cnblogs.com/javastart/p/7656679.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!