Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing some code with dispatch_async and get different results on an iphone 4s and ipad 1st gen.

I am wondering if it is due to the number of cores the CPU has. Is it possible to detect the number of cores or CPU type of an iOS device at runtime so I can dispatch_async on the 4s, but not on the ipad?

share|improve this question

1 Answer

up vote 4 down vote accepted

Here's the code to detect the number of cores on an iOS device:

#include <sys/sysctl.h>

unsigned int countCores()
{
    size_t len;
    unsigned int ncpu;

    len = sizeof(ncpu);
    sysctlbyname ("hw.ncpu",&ncpu,&len,NULL,0);

    return ncpu;
}

In addition to that, you can check against the [[UIDevice currentDevice] userInterfaceIdiom] to determine if the device is an iPhone or an iPad. Like this:

if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
    NSLog(@"iPad");
}
else {
    NSLog(@"iPhone");
}

Reference

share|improve this answer
#include <sys/sysctl.h> is a private library, isn't? – atxe Oct 24 '12 at 7:14
I don't think so. It's just a standard C library. – Simon Germain Oct 24 '12 at 13:51

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.