vote up 3 vote down star
3

Is it possible to distinguish an iPhone 3G from an iPhone 3G S using any of the properties of [UIDevice currentDevice]?

flag

20% accept rate
5  
I don't know, and I wouldn't want to anyway. If you want to check for functionality, check for functionality instead of checking versions. – OregonGhost Jun 22 at 9:33

3 Answers

vote up 5 vote down check

The best way to check is to use sysctlbyname("hw.machine", ...) as per http://stackoverflow.com/questions/688001/how-to-tell-if-your-code-is-running-on-an-iphone-or-an-iphone3g/688171#688171

The returned result for 3GS should be "iPhone2,1"

link|flag
Also, see arstechnica.com/apple/guides/… (although you'll still have to add the 2,1 result for the 3GS). – Stobor Jun 22 at 9:38
vote up -1 vote down

look at the very small model number on the back of the phone 3G = A1241 3G S = A1303

link|flag
This is a development site, so I can safely assume he meant from a development perspective. :) – Chris Stewart Aug 11 at 0:52
vote up 1 vote down

I don't believe so - nor even 1G phones from 3G. You have to use sysctls to get more detailed model info.

E.g. see here

link|flag

Your Answer

Get an OpenID
or

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