-2

我使用 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];
}

提前致谢。

4

2 回答 2

10
float height = [[UIScreen mainScreen] bounds].size.height

float width = [[UIScreen mainScreen] bounds].size.width
于 2013-09-04T13:07:17.780 回答
5

屏幕高度/宽度可以从以下位置检索:

[[UIScreen mainScreen] bounds].size.height

[[UIScreen mainScreen] bounds].size.width
于 2013-09-04T13:07:08.077 回答