1

I need to get the signal strength of an iPHone's present WiFi connection. (This is just a development experiment and not an app that will go to app store.)

I've searched CNCopyCurrentNetworkInfo reference but can't see how to do it.

Needs to be for iOS 8.

Doug Null
  • 7,989
  • 15
  • 69
  • 148

1 Answers1

2

if you want to be App Store conform I see no way -- there is no public api for that


the answer here mentioned a C function that does what you want but it isn't public api:
Accessing iPhone WiFi Information via SDK
further info on how to use that function:
Accessing & Using the MobileWiFi.framework
NOTE: private api may break at any point and this might even be broken already anyways

CCNCopyCurrentNetworkInfo won't help you AFAIK -- you CAN misuse the captive networks API to get the current SSID but I don't see how it could get you the RSSI

Community
  • 1
  • 1
Daij-Djan
  • 49,552
  • 17
  • 113
  • 135