为什么无法在iOS中调整大小按钮?

时间:2015-10-29 03:16:53

标签: ios xcode

我的Xcode是7.1。我试着在程序中调整大小如下。

CGRect buttonFrame = self.button.frame;
buttonFrame.size.width = 100;
buttonFrame.size.height = 60;
self.button.frame = buttonFrame;

我只有两个约束,并设置为"Bottom space to : Bottom layout guide" and "Align Centre X to : SuperView"。然后我将AutoResize子视图设置为UNCHECKED。为什么我可以在程序中调整大小?

1 个答案:

答案 0 :(得分:0)

手动设置框架并混合自动布局不能很好地协同工作,最好设置宽度和高度约束然后有一个出口,以便您可以更改这些约束来设置新的宽度和高度