Deactive NSLayoutConstraint iOS7

老子叫甜甜 提交于 2019-12-05 11:48:41

Another way to do this would be to add/remove the constraint from the view:

[myView addConstraint:constraint];

[myView removeConstraint:constraint];

This has been available since iOS 6.0. https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/index.html#//apple_ref/occ/instm/UIView/addConstraint:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!