Air iOS 7.1 // requestedDisplayResolution 'excludeDevices' doesn't work on the simulator?
So basically i want my app to use the 2x pixel scaling ( requestedDisplayResolution : standard ) on any iOS devices that have a screen bigger then 1024x768 ( retina iPads ect. )
else, for iPods / iPhones / iPads below or at 1024x768 : the requestedDisplayResolution : high ( if i understand well : 1x pixel then )
problem is the iOS 7.1 simulator only seems to take in account the value of requestedDisplayResolution and ignore the parameter excludeDevices :
if i go :
<requestedDisplayResolution excludeDevices="iPad">high</requestedDisplayResolution>
---> i get :
OK ( 1x pixel, no scaling ) : iPhone Retina 3.5 inches, iPhone Retina 4 inches, iPad
Not OK ( still 1x pixel no scaling --> i wanted 2x scaling this time ) : iPad Retina!
if i go the opposite way :
<requestedDisplayResolution excludeDevices="iPod iPhone">standard</requestedDisplayResolution>
---> i get :
Not OK ( 2x scaling --> i wanted 1x... ) : iPhone Retina 3.5 inches, iPhone Retina 4 inches
OK ( 1x ) : iPad ( once again, the only device on the simulator that doesn't actually seem to be affected neither by 'standard' or 'high' )
OK : iPad Retina ( 2x scaling : that's what i wanted for this device... yay, but not really cause the iPods / iPhones are screwed then )
hope i made myself clear, please help i'm losing my mind here : am i doing something wrong? did i overlook something? or is the simulator behavior wrong??
Thanks
