I'm making a OS X app where I need to get the Mac model, for example:
iMac11,3
MacBook3,1
And so on. Is there any class, or function to get it?
See Question&Answers more detail:osI'm making a OS X app where I need to get the Mac model, for example:
iMac11,3
MacBook3,1
And so on. Is there any class, or function to get it?
See Question&Answers more detail:osThis information is available via. sysctl
:
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/sysctl.h>
size_t len = 0;
sysctlbyname("hw.model", NULL, &len, NULL, 0);
if (len) {
char *model = malloc(len*sizeof(char));
sysctlbyname("hw.model", model, &len, NULL, 0);
printf("%s
", model);
free(model);
}