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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:15:28+00:00 2026-05-26T09:15:28+00:00

I have a preprocessor command for detecting the version of iOS and supporting iCloud

  • 0

I have a preprocessor command for detecting the version of iOS and supporting iCloud or not. What I am wondering is if a macro like so:

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 50000
    //stuff
#endif

will this work if someone with iOS 4.x downloads the app from the app store but it was compiled on/for iOS 5.x.

Since this would be evaluated on compile time are the apps compiled on the device or how does that work? Is there a better way for the same result?

  • 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-26T09:15:29+00:00Added an answer on May 26, 2026 at 9:15 am

    You can’t use macros for this. Macros are evaluated at compile time, and not at runtime, which is what you want for feature/capability detection, like iCloud support. (Otherwise you’ll end up with it enabled since you’re compiling against the iOS 5 SDK in all cases)

    You should just test for the presence of the ubiquity methods, which tell you whether you can call them, which tells you whether iCloud is supported, e.g.:

    if ([[NSFileManager defaultManager] respondsToSelector:@selector(isUbiquitousItemAtURL:)])    
    {
        // call it and do other iCloud stuff
    }
    

    Quick followup note re: your question about compiling. Compilation is the process that turns your actual code into the binary that runs on the device. This happens when you do Build in Xcode, and it happens on your machine only, never at Apple or on the device. This is why compile-time checks for version numbers won’t work– by the time you send it to a device, the decision would have already been made.

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

Sidebar

Related Questions

Languages like C and even C# (which technically doesn't have a preprocessor) allow you
I would like to add a preprocessor to HTML pages. Basically, I have a
I wondering if it possible to have a preprocessor OR or AND statement? I
I want to have a C preprocessor macro that knows the number of instantiations/macro
I have a project in C++ that I would like to view the preprocessor
I have the following preprocessor divective: #ifndef NDEBUG #define TRACE printf #else #define TRACE(...)
Let's say I have a source file with many preprocessor directives. Is it possible
In general, I occasionally have a chain of nested macros with a few preprocessor
I have an Inno Setup script with preprocessor directives ( #define s, #if s,
I have this preprocessor directive: #define INDEXES_PER_SECTOR BYTES_PER_SECTOR / 4 where BYTES_PER_SECTOR is declared

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.