美文网首页
代码Crash,Error崩溃集合

代码Crash,Error崩溃集合

作者: 龙幽 | 来源:发表于2016-03-18 10:33 被阅读1639次

    1、Error :

    NSInvalidArgumentException: A multiplier of 0 or a nil second item together with a location for the first attribute creates an illegal constraint of a location equal to a constant. Location attributes must be specified in pairs

    自动布局注意事项:

    注意事项1:设置translatesAutoresizingMaskIntoConstraints为NO;

    注意事项2:两个view在同一个hierarchy中才有可能添加相关约束。

    注意事项3:当firstAttribute不为宽或者高时,multipler不能为0。

    注意事项4:同上,当firstAttribute不为宽或者高时,secondItem不能为nil。

    当两个Attribute全是宽或高时multiplier才可以为0;

    当secondItem为nil时,secondAttribute应为NSLayoutAttributeNotAnAttribute

    相关文章

      网友评论

          本文标题:代码Crash,Error崩溃集合

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