Is there an iPhone equivalent of MAC_OS_X_VERSION_MIN_REQUIRED? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T21:46:38Z http://stackoverflow.com/feeds/question/691904 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/691904/is-there-an-iphone-equivalent-of-macosxversionminrequired 3 Is there an iPhone equivalent of MAC_OS_X_VERSION_MIN_REQUIRED? Daniel Dickison 2009-03-28T00:31:49Z 2009-03-30T14:21:36Z <p>I would like to conditionally include code for an iPhone app depending on which version of the SDK I'm compiling against. On Mac OS X, there is the <code>MAC_OS_X_VERSION_MIN_REQUIRED</code> preprocessor macro which gets set to the value of the <code>MACOSX_DEPLOYMENT_TARGET</code> build setting by the compiler. Is there an equivalent on the iPhone?</p> <h3>Update:</h3> <p>I've set <code>IPHONE_DEPLOYMENT_TARGET</code> to 3.0 in the build settings, but Xcode is passing <code>-D__IPHONE_OS_VERSION_MIN_REQUIRED=20000</code> and <code>-mmacosx-version-min=10.5</code> to GCC. Shouldn't the first one be <code>30000</code> and the second one be <code>-miphoneos-version-min=3.0</code>? What am I doing wrong?</p> <h3>Update 2:</h3> <p>Looks like I wasn't doing anything wrong. <code>__IPHONE_OS_VERSION_MIN_REQUIRED</code> and <code>-miphoneos-version-min</code> are both set correctly when building for a device -- it's only wrong when using the iPhone Simulator SDK. I think it's a bug in the simulator SDK.</p> http://stackoverflow.com/questions/691904/is-there-an-iphone-equivalent-of-macosxversionminrequired/691943#691943 1 Answer by Daniel Dickison for Is there an iPhone equivalent of MAC_OS_X_VERSION_MIN_REQUIRED? Daniel Dickison 2009-03-28T01:04:46Z 2009-03-28T01:04:46Z <p>For what it's worth, a decent work-around if such a macro does not exist, is to create 2 build targets, and in one of them add the build setting <code>GCC_PREPROCESSOR_DEFINITIONS</code> with a value like <code>IPHONE_OS_3</code>. Then in your code you can do:</p> <pre><code>#ifdef IPHONE_OS_3 [foo thisMethodIsUnderNDA]; #else [foo oldSchoolMethod]; #endif </code></pre> http://stackoverflow.com/questions/691904/is-there-an-iphone-equivalent-of-macosxversionminrequired/691959#691959 3 Answer by Brent Royal-Gordon for Is there an iPhone equivalent of MAC_OS_X_VERSION_MIN_REQUIRED? Brent Royal-Gordon 2009-03-28T01:17:31Z 2009-03-28T01:17:31Z <p>There are preprocessor macros that are defined for each version of the OS. For example, if <code>__IPHONE_OS_3_0</code> is defined, then you're building against the 3.0 SDK (or possibly later, I'm not certain).</p> http://stackoverflow.com/questions/691904/is-there-an-iphone-equivalent-of-macosxversionminrequired/692249#692249 7 Answer by cdespinosa for Is there an iPhone equivalent of MAC_OS_X_VERSION_MIN_REQUIRED? cdespinosa 2009-03-28T05:09:44Z 2009-03-28T05:09:44Z <p>See Availability.h</p> <pre><code> #if __IPHONE_OS_VERSION_MIN_REQUIRED &gt;= __IPHONE_2_0 </code></pre> <p>etc. </p> <p><a href="http://developer.apple.com/iphone/library/documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build%5FSetting%5FReference/build%5Fsetting%5Fref.html#//apple%5Fref/doc/uid/TP40003931-CH3-SW156" rel="nofollow">http://developer.apple.com/iphone/library/documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html#//apple_ref/doc/uid/TP40003931-CH3-SW156</a></p>