tags:

views:

507

answers:

2

Hi, I want to get the name of internet connection type in iPhone?

Any help would be appreciated.

Regards

Uddhalaka

+3  A: 

Take a look at the Reachability sample. Figure that it'll use the best available connection (WiFi, 3G, or Edge).

Ben Gottlieb
+3  A: 

With the SCNetworkReachability API you can tell if you're in one of three states:

  • no network
  • cellular network (EDGE or 3G)
  • Wifi network

There's no way to distinguish what type of cellular network you're on (EDGE or 3G), only that you're on a cellular network.

Marc Novakowski