在长时间搜索如何在 iphone4S 和 iphone5 上正确显示 UI 元素之后。我现在很困惑在 Xib 中显示 UI 元素的最佳方式是什么。我应该在尺寸检查器中使用自动调整大小功能还是应该使用自动布局?如果我使用自动调整大小,图像会失真。此外,我还看到人们在做以下事情
NSString *filename = @"image.png";
CGRect screenRect = [[UIScreen mainScreen] bounds];
if (screenRect.size.height == 568.0f)
filename = [filename stringByReplacingOccurrencesOfString:@".png" withString:@"-568h.png"];
self.imageView.image = [UIImage imageNamed:filename];
有人可以帮助我解决我的问题吗?