Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8879737
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:01:06+00:00 2026-06-14T20:01:06+00:00

Background: I need to get a basic understanding on how to present pixel perfect

  • 0

Background:

I need to get a basic understanding on how to present pixel perfect images on iOS devices using MonoTouch. My understanding of the iOS ecosystem is limited at the moment, being a developer for the windows platform for the last 18 years. From what I understand there is a common coordinate system that renders views the same no matter if it’s a retina display or an old “iPhone 3g” display.

The question is:

What is the best way to generate and display images without blurring or distortion using MonoTouch?

// AnkMannen

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T20:01:07+00:00Added an answer on June 14, 2026 at 8:01 pm

    First thing you need to learn about is iOS’s system for the retina display.

    All controls are laid out in coordinates as if they were a 3GS/iPad 2 or older. Devices with the retina display such as iPhone 4, 5, and iPad 3 all use these same coordinates, but with double the screen size.

    For your images, use PNGs. You will have 2 sets, one for the smaller display, and one for the retina display. Apple uses the file-naming convention:

    • yourImage.png – smaller image for 3GS
    • yourImage@2x.png – larger image for retina displays

    Let’s assume the image is 150 pixels by 50 pixels at the smaller size. To properly display it from C#:

    //This code is in the ViewDidLoad method of a UIViewController
    var imageView = new UIImageView(new RectangleF(0, 0, 150, 50));
    imageView.Image = UIImage.FromFile ("yourImage.png");
    View.AddSubView(imageView);
    

    iOS will load the appropriate sized image (by the naming convention) and place it in the top left of the screen. Keeping the correct size for the imageView will also prevent any distortion. On retina displays, iOS will load the larger 300×100 image and look identical (except much sharper) to the smaller sized screens side-by-side.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to place two repeated background images on the left and right border
I need to animate my background which have 6 images and that needed to
Quick background. CFHTTP doesn't support Windows NTLM/Authenticate authentication, only basic authentication. I need to
I need to get user location update when application is in background. I used
I need to get the width & height of a CSS background image and
I need to get the URL of an element's background image with jQuery: var
Basic question is do we need to run our war as ROOT.war to get
Background We need to develop a specialised CMS (internal use only) to support a
I need background transparent only for black div. but it is applying even for
I come from a .NET background and need to do a web project in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.