Active connection name - Iphone

I want to get the name of the Internet connection type in the iPhone?

Any help would be appreciated.

Hello

Uddhalaka

0


source to share


2 answers


With the SCNetworkReachability API, you can find out if you are in one of three states:

  • no network
  • cellular network (EDGE or 3G)
  • Wi-Fi network


It is impossible to discern which type of cellular network you are using (EDGE or 3G), only that you are on a cellular network.

+4


source


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



+3


source







All Articles