iPhone4とiPhone5の互換性のあるアプリケーションを作成しています。画像を設定するために私はコードを使用しています:
[UIColor colorWithPatternImage: [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"aaaa" ofType:@"png"]]]
iPhone 4シミュレーターとデバイスでは正常に動作しますが、iPhone5シミュレーターでは動作しません。私はまだiPhone5を持っていません。誰かが教えてもらえますか、iPhone 5デバイスで動作しますか?
iPhone 5で使用する画像に別の名前を使用し、その画像名で@ 2xを記述しない場合、
[UIColor colorWithPatternImage: [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"aaaa" ofType:@"png"]]]
iPhone5シミュレーターで正常に動作します。誰かが教えてもらえますか、iPhone 5デバイスでも動作しますか?または、を使用してiPhone5に画像を設定する他の方法はありますか
[UIColor colorWithPatternImage: [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"aaaa" ofType:@"png"]]]
。
提案してください。
ありがとう。