如何以编程方式使UIView子视图成为固定大小

时间:2010-11-02 01:45:32

标签: ipad ios

我有一个UIView子类,我想要50x50;当我加载它时它总是占用整个屏幕我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

发布一些代码可以帮助我们,但是这里是你如何设置任何UIView子类的框架:

// When creating the view...
UIView *yourView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 50, 50)];

// or after having created the view...
yourView.frame = CGRectMake(0, 0, 50, 50);
// ... or
[yourView setFrame:CGRectMake(0, 0, 50, 50)];