Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于 iPhone 5 的尺寸更大,因此在 iPhone 4 上无法看到低于 460 的视图。有没有办法让它们兼容?例如,应根据全屏大小调整视图中项目的大小。
只是您可以检查您的设备是否更大......使用以下代码
int deviceType; float height = [UIScreen mainScreen].bounds.size.height; if (height==568) { self.deviceType = 5; } else { self.deviceType = 4; }