问题描述:
使用Autolayout
从xib加载后代码添加Constraint,xib中没有任何约束,只是创建了n个View并拖了线方便调用
在运行过程中产生约束冲突错误,
NSIBPrototypingLayoutConstraint冲突,但是实际上xib中我没有定义任何约束。
解决方法:
在获取到xib后立即清除Constraint
[self.contentView removeConstraints:[self.contentView constraints]];
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
即可。
参考来源:
http://book.51cto.com/art/201502/464882.htm