as explained here -> Retreiving Carrier Name from iPhone Programmatically

i'm trying to get my carrier's name, i'm using this code

CTTelephonyNetworkInfo *netinfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [netinfo subscriberCellularProvider];
NSLog(@"Carrier Name: %@", [carrier carrierName]);
[netinfo release];

but i receive a warning on [carrier carrierName]: Instance method '-carrierName' not found

i've added and the framework coretelephony to my project but when i execute my app it crashes!

thanks to all!

link|improve this question

70% accept rate
feedback

4 Answers

up vote 3 down vote accepted

Did you explicitly import CTCarrier?

#import <CoreTelephony/CTCarrier.h>
link|improve this answer
I was importing only <CoreTelephony/CTTelephonyNetworkInfo.h>... -.-' thank you! – Janky Nov 16 '11 at 9:24
feedback

Try

NSLog(@"Carrier Name: %@", carrier.carrierName);

instead.

link|improve this answer
it says "Poperty 'carrierName' cannot be found in forward class object 'CTCarrier *' – Janky Nov 15 '11 at 15:37
1  
which iOS are you compiling for, by the way? 3.0 or 4.0 or? – Michael Dautermann Nov 15 '11 at 15:39
4.0 and 5.0 both – Janky Nov 15 '11 at 18:02
feedback

i used both: NSLog(@"Carrier Name: %@", carrier.carrierName); and NSLog(@"Carrier Name: %@", [carrier carrierName]);

run in simulator and both result is Carrier Name: (null)

do i miss anything here? can u guys share what the result looks like?

link|improve this answer
Simulator doesn't have SIM card, thus no carrier – JOM Jan 6 at 13:10
feedback

I have same problem too,and try to log by device:

NSLog(@"carrierName = %@",carrier.carrierName);
NSLog(@"mobileCountryCode = %@",carrier.mobileCountryCode);
NSLog(@"mobileNetworkCode = %@",carrier.mobileNetworkCode);
NSLog(@"isoCountryCode = %@",carrier.isoCountryCode);
NSLog(@"allowVOIP = %d",carrier.allowsVOIP);

result:

2012-05-29 11:48:31.466 carrierTest[357:707] mobileCountryCode = 466

2012-05-29 11:48:31.469 carrierTest[357:707] mobileNetworkCode = 97

2012-05-29 11:48:31.470 carrierTest[357:707] isoCountryCode = tw

2012-05-29 11:48:31.472 carrierTest[357:707] allowVOIP = 1

the object carrierName is "....." in run stack,actually it should be "台湾大哥大"

it seem like string encoding problem cause i can't get it? I have no idea...

you can try the other carrier SIM card.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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