1

I want to get some infos about the cellular network the UMTS interface on my iphone is connected to. Does anyone know API calls, that do this job. I remember an app on android os, where it was possible to get such info. I'm doing some Objective-C programming and was wondering if that'd be possible or if Apple does not support that.

Eventually I want to get something like this on the iphone, which is a super cool app!

http://www.panix.com/~mpoly/android/antennas/r1.0/

JohnnyFromBF
  • 9,873
  • 10
  • 45
  • 59

1 Answers1

1

I don't think there is a public api for this. The only think that you can read is

  allowsVOIP  property
  carrierName  property
  isoCountryCode  property
  mobileCountryCode  property
  mobileNetworkCode  property

From CTCarrier Class Reference

Take a look to the Core Telephony Framework Reference

Alex Terente
  • 12,006
  • 5
  • 51
  • 71