我有一个UIView子类,我想要50x50;当我加载它时它总是占用整个屏幕我该如何解决这个问题?
答案 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)];