Hi
Is there any way I can find out in my app if the user is running it on a device with OS 2.x or 3.0?
I tried adding a tag like the iPhone project templates do, but it doesn't seem to work.
#ifndef __IPHONE_3_0
//MY CODE FOR 3.0 GOES HERE
#else
//2.x CODE HERE
#endif
Thanks.