アプリを開発しました。そのアプリで背景画像を設定していますが、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;