vote up 1 vote down star
3

I want to know the serial number of my iPhone using my application. I have writen code below.

- (NSString*)getSerialNumber
{
 CFTypeRef serialNumberAsCFString;

 io_service_t platformExpert = IOServiceGetMatchingService(kIOMasterPortDefault, IOServiceMatching("IOPlatformExpertDevice"));

 if (platformExpert)
 {
     serialNumberAsCFString = IORegistryEntryCreateCFProperty(platformExpert, CFSTR(kIOPlatformUUIDKey), kCFAllocatorDefault, 0);
 }

 IOObjectRelease(platformExpert);

 NSString *serial = [[NSString alloc] initWithFormat:@"%@",serialNumberAsCFString];

    NSLog(@"serail no==>%@",serialNumberAsCFString);
    NSLog(@"serail no==>%@",serial);
}

Why am I still getting wrong serial number?

flag
1  
What do you mean "wrong serial number"? Is it not showing up, or just incorrect? – craig Apr 16 at 15:38

2 Answers

vote up 3 vote down

Are you linking the IOKit framework?

Try the

id getValue(NSString *iosearch);

function, available at

http://blogs.oreilly.com/iphone/2008/08/retrieving-device-information.html

You can also use the UIDevice class to retrieve other useful information For instance, you can do:

NSString *id = [[UIDevice currentDevice] uniqueIdentifier];

Other useful properties are the following ones:

name
systemName
systemVersion
model
localizedModel

Kind regards

link|flag
ok I have try this code , but my application is terminated improperly & give me warnings at 3 places: 1) CFTypeId propID=NULL; (pointer without cast) 2) CFTypeRef prop = IORegistryEntrySearchCFProperty(entry, kIODeviceTreePlane, iosearch, nil, kIORegistryIterateRecursively);( warning: passing argument 3 of 'IORegistryEntrySearchCFProperty' from incompatible pointer type ) – pJosh Apr 17 at 5:52
vote up 0 vote down

You should change the argument 2 of IORegistryEntryCreateCFProperty from "CFSTR (kIOPlatformUUIDKey)" to "CFSTR (kIOPlatformSerialNumberKey)". Then you will get the correct serial number(with length of 11 characters).

link|flag

Your Answer

Get an OpenID
or

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