码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发——NSIBPrototypingLayoutConstraint原型约束造成的莫名问题

时间:2015-04-26 17:58:25      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:

问题描述:

使用Autolayout

从xib加载后代码添加Constraint,xib中没有任何约束,只是创建了n个View并拖了线方便调用

 

在运行过程中产生约束冲突错误,

NSIBPrototypingLayoutConstraint冲突,但是实际上xib中我没有定义任何约束。

 

解决方法:

在获取到xib后立即清除Constraint

 [self.contentView removeConstraints:[self.contentView constraints]];

 

即可。

 

参考来源:

http://book.51cto.com/art/201502/464882.htm

iOS开发——NSIBPrototypingLayoutConstraint原型约束造成的莫名问题

标签:

原文地址:http://www.cnblogs.com/zeyang/p/4457951.html

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