4

I would like to know what the simplest/best way for obtaining information about the current network connection (if any) programmatically in iOS. More specifically:

  • Network Connection Type (3G or Wireless)
  • Network Operator
  • SSID of network
  • BSSID of access point
  • Mac Address of device
  • Current IP address
Groppe
  • 3,819
  • 12
  • 44
  • 68
  • 1
    There is a wealth of information already available on this topic. Maybe try adding "Reachability" to your searches. – Steve Feb 13 '12 at 01:50
  • possible duplicate of [How to check for an active Internet Connection on iPhone SDK?](http://stackoverflow.com/questions/1083701/how-to-check-for-an-active-internet-connection-on-iphone-sdk) – Steve Feb 13 '12 at 01:51
  • also http://stackoverflow.com/questions/677530/how-can-i-programmatically-get-the-mac-address-of-an-iphone – Steve Feb 13 '12 at 01:54
  • as well as http://stackoverflow.com/questions/260484/how-do-i-query-the-iphones-current-ip-address – Steve Feb 13 '12 at 01:54

1 Answers1

4

Network Connection Type: How to check for an active Internet connection on iOS or OSX?

MAC Address: How can I programmatically get the MAC address of an iphone

IP Address: How do I query the iPhone's current IP address?

I'm not sure apple gives you access to the other three things you listed.

Community
  • 1
  • 1
Steve
  • 31,144
  • 19
  • 99
  • 122