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 3678790
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T03:23:00+00:00 2026-05-19T03:23:00+00:00

I set base sdk 4.1 and ios deployment target = ios4.1. The contentScaleFactor is

  • 0

I set base sdk 4.1 and ios deployment target = ios4.1. The contentScaleFactor is available in iOS 4.0 and later.

if ( [imageView respondsToSelector: @selector (contentScaleFactor:)] == YES )
{
    imageView.contentScaleFactor = 1.0;
}

Why do i always get NO ?

  • 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-05-19T03:23:01+00:00Added an answer on May 19, 2026 at 3:23 am

    It does not respond to contentScaleFactor: because contentScaleFactor is a property, with the following accessors:

    - (CGFloat)contentScaleFactor
    - (void)setContentScaleFactor:(CGFloat)
    

    There is no other method with the name contentScaleFactor that accepts a single parameter (marked by the :).

    So, the selectors available are contentScaleFactor and setContentScaleFactor:. You are probably looking for setContentScaleFactor:, that’s what the setter is called.

    Change your code to this:

    if ( [imageView respondsToSelector:@selector(setContentScaleFactor:)] == YES )
    {
        // Or as bbum says, use [imageView setContentScaleFactor:1.0];
        imageView.contentScaleFactor = 1.0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

using XCode 3.2.6, Base SDK iOS 4.3 I set iOS Deployment Target to iOS
I have set the base SDK to iPhone Device 4.0 and the deployment target
The advice from Apple is to always set the Base SDK for iPhone/iPad projects
I have an application that is supporting iOS 2.0. The Base SDK is set
I have my current base sdk set to iOS 4.2. I have this method:
Suppose I have my project using Base SDK = 4 but set the Target
I'm using MapKit in an iPad app with the Base SDK set to iOS
class FxRate { string Base { get; set; } string Target { get; set;
I am having problems with my universal app. I have set the Base SDK
I've developed an iPhone application for an iOS Deployment Target 3.2. But my client

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.