我使用 CGRectmake 在 XCode 中创建一个新的子视图。这个我可以做的很好。但我想让新视图的大小比屏幕宽度小 10 个像素。我通常使用 Java 并会使用 screen.width-10 来执行此操作。但是对于 Xcode 中的 ObjC,我不确定如何也找不到我需要的信息。这是我到目前为止所拥有的,它在按钮点击上创建了一个框,但我想将宽度从 100 更改为屏幕宽度 - 10。
//Info Button
-(IBAction) buttonTapped:(id)sender {
// create a new UIView
UIView *newView = [[UIView alloc] initWithFrame:CGRectMake(10,10,100,100)];
// do something, e.g. set the background color to red
newView.backgroundColor = [UIColor redColor];
// add the new view as a subview to an existing one (e.g. self.view)
[self.view addSubview:newView];
// release the newView as -addSubview: will retain it
[newView release];
}
提前致谢。