Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Detecting different hardware at runtime is useful for analytics (among other, even more questionable purposes).

Many iOS app creators may be interested to know how many users are experiencing their app on an iPad mini (rather than just knowing how many users are experiencing their app on an iPad with 1024x768 screen resolution - which would also be interesting).

Is there any public API in Cocoa touch/UIKit/ObjC/C which could be used to detect that your iOS app is running on an iPad mini at runtime? Ideally, this method should distinguish between iPad 2 & iPad mini (which have the same number of pixels, but a different pixel density).


Post Script: I realize many people will consider detecting iPad mini at runtime a bad idea. However, I think this is a valid question with a definite Yes or No answer. An answer which I think it is useful for the community to know.

share|improve this question

5 Answers

up vote 6 down vote accepted

Boxel's answer would be good if it didn't invoke undefined behavior and if it didn't have superfluous parts. One, + [NSString stringWithCString:encoding:] requires a C string - that is, a NUL-terminated char pointer (else it will most likely dump core). Also, you don't need the conversion to NSString - since sysctlbyname() provides you with a plain old C string (without the NUL terminator, of course), you can directly use strcmp() to save a few dozen CPU cycles:

#include <sys/sysctl.h>

size_t size;
sysctlbyname("hw.machine", NULL, &size, NULL, 0);
char *machine = malloc(size + 1);
sysctlbyname("hw.machine", machine, &size, NULL, 0);
machine[size] = 0;

if (strcmp(machine, "iPad2,5") == 0) {
    /* iPad mini */
}

free(machine);

Edit: now that answer is fixed as well.

share|improve this answer
@robmayoff did you downvote? Or somebody else? – H2CO3 Nov 14 '12 at 14:55

Use sysctlbyname to get the platform string, then compare it with the IPSW prefix strings listed here. It looks like the only currently known iPad Mini is "iPad2,5"

Example:

size_t size;
sysctlbyname("hw.machine", NULL, &size, NULL, 0);
char *machine = malloc(size + 1);
sysctlbyname("hw.machine", machine, &size, NULL, 0);
machine[size] = 0;

if(strcmp(machine, "iPad2,5") == 0) {
    // do something special on the iPad Mini    
}

free(machine);
share|improve this answer
2  
Making the returned C string into an NSString is unnecessary, you could just write if (strcmp(machine, "iPad2,5") == 0) { }. Also, you're forgetting the NUL-terminator: char *machine = malloc(size); should be char *machine = malloc(size + 1); and you need a machine[size] = 0; as well. – H2CO3 Nov 13 '12 at 19:28
Thanks, I removed the unnecessary string and will fix the malloc as well. +1 – boxel Nov 13 '12 at 19:35

There is no reliable, future-proof way to detect the iPad mini's pixel density. Other answers suggest looking at the hw.machine string. But we don't know (as of the time I write this) what the strings will be for the iPad mini cellular models (though we can make an educated guess: iPad2,6 will probably have GSM and iPad2,7 will probably have CDMA).

It's fine to look at the hw.machine string for analytics. But it's dangerous to let it affect your app's user interface, because even the iPad2,5 string for the current iPad mini is subject to change.

When the iPad 2 came out, the wifi model's string was iPad2,1. Later (when they released the iPad 3), they changed the iPad 2 hardware and changed the hw.machine string to iPad2,4, but they still called it the iPad 2. The same thing could happen with the iPad mini - or even with the iPad 2 again! For example, Apple could release yet another version of the iPad 2 hardware and give it the machine string iPad2,8.

share|improve this answer
Yes, this is true if we want to be precise and future-proof. But if we want a solution, we can have one that works currently, and also the iPad 2's name change corresponded to a hardware change (as you mention it as well), so technically it was not that iPad 2 :-) – H2CO3 Nov 13 '12 at 20:37

import CoreTelephony.framework. Try this on device

#import <sys/utsname.h>
#import <CoreTelephony/CTTelephonyNetworkInfo.h>

NSString*
machineName()
{
    struct utsname systemInfo;
    uname(&systemInfo);

    return [NSString stringWithCString:systemInfo.machine
                          encoding:NSUTF8StringEncoding];
}

This solves my purpose up to now. But as I don't have any iPad mini I don't know what it gonna print for iPad mini. Could you let me know?

share|improve this answer
3  
The uname function and the utsname structure are part of the standard POSIX C library. Why do you think you need CoreTelephony? – rob mayoff Nov 13 '12 at 19:54

I too need a solution because Im updating an older app of mine which features an onscreen vernier caliper / ruler..

i was thinking, Apple are probably very unlikely to release any new non-retina (full sized) ipad..

would it not be smarter (more future proof) to: 1 rule out retina devices..

if ([[UIScreen mainScreen] scale] > 1.0) return NO;

2 rule out any iPhone / iPod Touches..

if (user idiom..) return NO;

3 rule out any known non retina iPads with machine ID..

if (machine ID ipad 1 or 2) return NO;

all That stuff eliminated.. return YES; ...

does anybody have all the machine IDs for all known non retina ipads? sorry if i should be asking my own question

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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