I am looking for a SDK API to retrieve the device\'s local phone number from the SIM card. Is there a way to do it?
Take a look at this blog post here.
NSString *num = [[NSUserDefaults standardUserDefaults] stringForKey:@”SBFormattedPhoneNumber”]; NSLog(@”Phone Number: %@”, num);
Adrian