Search code examples
iosiphoneobjective-ccocoa-touchretina-display

How to open an app in non-retina mode for iPad?


Can we turn off retina display for iPad programmatically? I know it is possible in cocos2d by using

[[CCDirector sharedDirector] enableRetinaDisplay:NO];

But for cocos touch is it possible? If yes how?


Solution

  • No,Its not possible. Cocos2d acts as a engine so its possible to turn off retina display.It creates its own virtual display and show it over the normal display. But in cocos touch we can not access the actual engine.So its not possible in cocos touch.