vote up 2 vote down star
4

HI all

I want to make one app for iPhone 2.2.* and for version 3.0. Some method in 2.2* is deprecated in 3.0. ( like UITableViewCell setText and setLabel )

Is there any way to check which firmware version is used on iPhone and to set different method to use

flag

50% accept rate
2  
stackoverflow.com/questions/820142/… – Kriem May 10 at 17:45

3 Answers

vote up 7 vote down check

You will need to use pre-processor directives for the conditional compilation such as __IPHONE_3_0 and build two separate executables.

For example:

 #ifdef __IPHONE_3_0
 // code specific to version 3
 #else
 // code specific to version 2
 #end

If you need to detect the version at run-time you can use [[UIDevice currentDevice] systemVersion]. It returns the string with the current version of the iPhone OS.

link|flag
vote up 4 vote down

As I mentioned in the comments before, check: http://stackoverflow.com/questions/820142/how-to-target-a-specific-iphone-version

link|flag
vote up 0 vote down

As mentioned in the other referenced thread, while you can use pre-processor directives to generate two applications from one code base, you will still need two applications (one for 2.x and one for 3.x)

A compile time directive cannot be used to make a run time decision.

There's more detail in the other thread.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.