故事板UiView设置大小与代码?

时间:2014-11-19 09:04:23

标签: ios storyboard

我在Storyboard中使用UIViewA

(w,h,x,y)

我想通过代码

更改尺寸UIViewA

我该怎么做?

3 个答案:

答案 0 :(得分:0)

在ViewController类中为该UIView对象创建一个IBOutlet,并在ViewDidload中设置其框架,或者以编程方式设置框架的任何位置。 注意:我假设您没有使用自动布局。

答案 1 :(得分:0)

[UIViewA setFrame:yourFrameWithChangedSize];

答案 2 :(得分:0)

试试这样 添加 .h

@property (strong,nonatomic) IBOutlet UIView *yourview;
.m 文件

中的

@synthesize yourview

在您想要的地方创建视图

`yourview.frame = CGRectMake(10,100,300,40)`;

  self.view = yourview;

根据需要更改您的观点

yourview.frame = CGRectMake(102,200,300,40);

请参阅此link