Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode iphone simulator not running Retina?

I have added some graphic to my app, the size is directed to the Retina Display ress.

i have uncommented

// Enables High Res mode (Retina Display) on iPhone 4 and maintains low res on all other devices
if( ! [director enableRetinaDisplay:YES] )
    CCLOG(@"Retina Display Not supported");

but when i run my program i get "Retina Display Not supported", and i'm using the iPhone 4.3 emulator

What can i do to run Retina display, so that i can test my graphic.

Thx

like image 699
MartinElvar Avatar asked Nov 01 '11 10:11

MartinElvar


2 Answers

The Simulator (it's a simulator and not an emulator by the way) has a menu item to switch between retina and non-retina display: Hardware -> Device -> iPhone (Retina)

like image 96
Ole Begemann Avatar answered Oct 21 '22 07:10

Ole Begemann


You can find the full instruction below:

http://gensanblog.com/2012/11/16/how-to-activate-retina-mode-in-xcode-ios-simulator/

like image 33
Erwin Bantilan Avatar answered Oct 21 '22 08:10

Erwin Bantilan