我只是對我需要用於按鈕,圖像視圖等的圖像大小感到困惑。 我想調整所有手機的圖像。 屏幕高度/寬度與不同的iPhone之間應該有什麼比例。用於不同手機的Ios圖像大小指南
就像我有一個按鈕。我在下面創建way-
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.
在此先感謝。
閱讀[指南](https://developer.apple.com/ios/human-interface-guidelines/graphics/custom-icons/)並創建3個尺寸1x,2x和3x – Tj3n