Xcode - how to use MobileWiFi.framework

In my private application (not jailbroken) I need to read RSSI values ​​for corporate access points. I read about MobileWiFi.framework. I am trying to use the sample code “Get WiFi Signal Strength” found here , but with no luck. Maybe I'm using the framework incorrectly. Can anyone tell me the steps to do this?

+1
source share
1 answer

visit: // http://iphonedevwiki.net/index.php/MobileWiFi.framework

  <key>com.apple.wifi.manager-access</key>
</true>
  Your custom entitlements file should finally look something like that:

     <?xml version="1.0" encoding="UTF-8"?>
   <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"    "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
       <key>keychain-access-groups</key>
   <array>
    <string>YOUR_APP_BUNDLE_ID</string>
</array>
<key>com.apple.wifi.manager-access</key>
</true>
  </dict>
  </plist>
+1
source

All Articles