Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS not using [email protected]

I have 3 images:

test.png
[email protected]
[email protected]

In IBOutlet, a UIImageView is set to display test.png.

On iPhone 3.5in without retina, it's displaying test.png

On iPhone 3.5in with retina, it's displaying [email protected]

But on iPhone 4in with retina, it's displaying [email protected]!!!

What's going on?

Thanks!

like image 672
0xSina Avatar asked Nov 01 '12 02:11

0xSina


People also ask

Which iOS are no longer supported?

Video: Watch Everything Announced at Apple's WWDC 2022 Event This means any phones introduced in 2016 or earlier, including the iPhone 6S, iPhone SE and iPhone 7, won't be getting Apple software updates anymore.

Why does my Move to iOS not work?

Move to iOS stuck on connecting to the iPhone might be resolved by restarting both the devices. A simple reboot can remove any cached error or bug in the mobile devices and give way to a successful data transfer from Android to iPhone. On Android, press and hold the Power button.

What do you use iOS for?

Applications. iOS devices come with preinstalled apps developed by Apple including Mail, Maps, TV, Music, FaceTime, Wallet, Health, and many more. Applications ("apps") are the most general form of application software that can be installed on iOS.

Is iOS still better than Android?

iOS is generally faster and smoother Having used both platforms daily for years, I have encountered way fewer hiccups and slow-downs using iOS. Performance is one of the things iOS usually does better than Android.


1 Answers

The -568@2x suffix only applies to the Default.png launch images. There is no special suffix used by UIImage imageNamed: (or the other UIImage methods). If you need a special image on the 4" screen, you need to add code to get the desired image yourself.

like image 83
rmaddy Avatar answered Oct 02 '22 09:10

rmaddy