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];
}
前もって感謝します。