我已经开发了一个应用程序。在该应用程序中我正在设置背景图像,它将在 iPhone 4s 中正常显示,但在 iPhone 5 中未设置背景图像。
这是我在 iPhone 4s 上的屏幕
它在 iPhone 5 中显示如下:
我正在使用此代码来设置背景图像:
// Custom initialization
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"inner-bg"]];
bgView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"login-bg"]];
bgView.layer.cornerRadius =7;
bgView.layer.masksToBounds = YES;