我正在尝试更改 UIButton 的位置,它在界面生成器中定位和调整大小。我难住了。
我在末尾尝试了这段代码viewDidAppear
:
[_smartphoneButton setFrame:CGRectMake( 20, 20, 100, 50 )];
没有什么变化。但我知道_smartphoneButton
它是有效的,因为它_smartphoneButton.hidden = YES;
可以工作,也可以改变 UIButton 图像。
和建议?
PS,这些都不起作用:
_smartphoneButton.frame = CGRectMake( 20, 20, 100, 50 );
或者
_smartphoneButton.center = CGPointMake(10.0f, 10.0f);
提前致谢!!!