I have a iPad app built with SDK 5.1 (Xcode 4.4). The app is a non-retina app. On iPad 1 and 2 the images are scaled properly. On the new iPad (3rd generation) all the images get scaled up. This behaviour is kind of expected, but undesired in my situation. How do I prevent the images from being scaled up?
iPad retina stretches non-retina images in Cocos2d
460 views Asked by mmvie At
1
There are 1 answers
Related Questions in IPAD
- Site loads on iPad/Chrome but not on iPad/Safari
- Possible to use NFC for iPad
- Intune IpadOS disable Safari quick notes
- Does anyone know how to make iPad layout the same as iPhone's? Size wise the text and overall layout get's smaller when I run the app on the iPad
- How to setup different launch screen image for iPad portrait and landscape mode?
- Appear Circles in ZStack exact image position as navigationSplitView (.balanced) opens or close
- Can I use VS code on Ipad
- Webapp exiting fullscreen when dragging mui slider in iPads
- Why are pointer events disabled when using Apple's pencil in Safari?
- @media print @page margins not working on Mac Safari and iPad
- FontAwesome Icons displays as white on iPad instead of Black as on other platforms making them almost invisible
- SwiftUI .autocorrectionDisabled() behavior not updating with @State BOOL
- SwiftUI Previews Multitasking Options
- Flutter - how to prevent an app being closed by user on IpadPro (iPadOs 17)
- ipadOS 17.4: AVCaptureMetadataOutput delegate not called (qrscanner)
Related Questions in COCOS2D-IPHONE
- How to get C char * string value in swift?
- Cocos2dx Crash - Version 3.17.2
- How can i change the entire speed (timing) of a android game made with cocos2dx?
- Adding code to my AppDelegate / AppController
- Migrate Cocos2d to latest device support
- Cocos 2dx control playback speed of currently playing audio effect
- I am having a problem building my app locally on my Mac
- quick cocos xcode with Undefined symbols for architeture error
- can not change scenes in Cocos2d
- Lexical or preprocessor Issue: Exporting Cocos2D as a iOS framework
- cocos2d, can we call a function in "sequence" on a sprite?
- Cocos2d-x v4.0 crashing in iPhone Simulator with Xcode 12, Xcode 12.1, Xcode 12.2
- How to create vibration with customized duration on ios's objectiveC?
- Using python to simulate 2D elastic collisions
- Black screen on app launch AFTER using storyboard launch only on iPhone 11 onwards
Related Questions in RETINA-DISPLAY
- WordPress Retina Images Support
- Can't see iOS App Icon in P3 Color on latest iOS devices that support it
- border 0.5px with rounded corners not show on mobile display
- iPhone App Submission requires 5.5 inch display screenshots, but Xcode does not offer any simulators for these devices
- Delphi iPad project splash graphic to fill the screen
- Are background images wrapped in media queries loaded after the default background image?
- CATextLayer is blurry on non-retina display
- NSScreen not updating monitor count when new monitors are plugged in
- MacOS BigSur auto-scales Java16/Swing app window for 5K Retina display
- iPhone colour display issue on iPhone 6 (non retina) vs iPhone 11(Retina display)
- Swing Java2D on Java 11 and a modern iMac
- If the browser downscales a large image, will it display the same amount of detail on different screen resolutions?
- Can you tell me know how my images look in Safari
- SVG element pixelated on retina only if filters applied
- How to programmatically apply color filters on the screen?
Related Questions in IPAD-3
- How to distinguish in code between the new iPadPro with a home bar and the old one with the home button?
- React Native App has black border not edge-to-edge fullscreen in iPad 3rd Generation
- Jailbreak and overclock ipad cpu
- Different UI for different iPAD sizes
- iPad Air doesn't display my foundation 6 site properly
- Input Required Doesn't work on Safari on iPad 3
- iPad webapp links open in new tab from area href (imagemap)
- How to detect (from website) whether ipad is using a Safari or non Safari (wrapper) browser?
- Pac file not working as proxy for ipad
- empty-cells on iPad browser
- GLKView snapshot returning an empty image only on ipad 3
- Issue scrolling div with Safari on iPhone 6+, iPad 3 when zoomed in
- UIPageViewController with Images in iPad3 caches all viewcontrollers in memory
- Application was crashing without any error message
- Application was crashed in ipad Air
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Since you are building for both Non-Retina and Retina devices you should include both versions of all images. The Retina images should be double in size of the screen resolution and should have the @2x.png (or jpg) suffix. Example:
[email protected]