Hi nexirius!
There's an easy way to know some device's properties such as it's name, it's OS and some more things:
Code:
[[UIDevice currentDevice] model]; //for example this will return a string that represents the device's model
Check out what [UIDevice currentDevice] can return you (for example, if operating system is 3.2 then you're sure device is an iPad), I'm not sure if it will do what you're expecting, but if not I've seen some days ago a class someone has developed that can be used to check exactly which device model is (I'm sorry, I don't have it hehe), I think it's called "DeviceDetection.h" or something like this...
Hope it helped!