我只是对按钮、图像视图等需要使用的图像尺寸感到困惑。我想调整所有 iphone 的图像。屏幕高度/宽度和不同 iphone 之间的比例应该是多少。
就像我有一个按钮。我以以下方式创建 -
UIButton *takePicButton = [UIButton buttonWithType:UIButtonTypeCustom];
takePicButton.frame = CGRectMake(0, SCREEN_HEIGHT-UI_ITEM_HEIGHT, SCREEN_WIDTH, UI_ITEM_HEIGHT);
[takePicButton setBackgroundImage:[UIImage imageNamed:@"take_photo.png"] forState:UIControlStateNormal];
[self.view addSubview:takePicButton];
[takePicButton addTarget:self action:@selector(takePicture:) forControlEvents:UIControlEventTouchUpInside];
对于这个按钮,我需要在 xcode 上添加多大的图像以支持 iPhone 4 - iPhone 7。
提前致谢。