Is there a way to determine the device running an application. I want to distinguish between iPhone and iPod Touch, if possible.

31 Answers
31

You can use the UIDevice class like this:

NSString *deviceType = [UIDevice currentDevice].model;

if([deviceType isEqualToString:@"iPhone"])
    // it's an iPhone

Leave a Reply

Your email address will not be published. Required fields are marked *