用了autolayout,再改view控件的frame方法

使用了autolayout就无法在viewDidLoad中改变视图的frame了吗

###[用代码修改xib中控件的frame](http://www.jianshu.com/p/e7bf2e8783d6)

1.设置view的这个属性为YES,比如_MainView.translatesAutoresizingMaskIntoConstraints = YES; 

意思是:只是说不再使用你在自动布局是给的初始值,还在使用代码设置的frame。

 Use Autolayout 与手动设置frame是矛盾的,二者不可同时对一个控件有操作。

你可能感兴趣的:(用了autolayout,再改view控件的frame方法)