Is it possible to get wifi signal strength in ios

2019-02-13 09:02发布

I want to check WIFI signal strength to display some kind of message for weak WIFI signal.

I fount that it is not possible in iOS 8 and older.

Is it possible to get wifi signal strength in iOS 9? and if answer is yes then How?

3条回答
兄弟一词,经得起流年.
2楼-- · 2019-02-13 09:02

It is, but you need permission from Apple. Once Apple allows you to use the HotspotHelper framework, you'll be able to create profiles with the hotspot helper entitlements. Check this post: How to get Wifi SSID in iOS9 after CaptiveNetwork is deprecated and calls for Wifi name are already blocked

查看更多
混吃等死
3楼-- · 2019-02-13 09:14

Yes , it is possible in iOS 9.Look into NEHotspotNetwork

enter image description here

查看更多
Juvenile、少年°
4楼-- · 2019-02-13 09:24

Register your app as Hotspot helper. (forums.developer.apple.com/message/30657#30657)

#import <NetworkExtension/NetworkExtension.h>

for(NEHotspotNetwork *hotspotNetwork in [NEHotspotHelper supportedNetworkInterfaces]) {
    NSString *ssid = hotspotNetwork.SSID;
    NSString *bssid = hotspotNetwork.BSSID;
    BOOL secure = hotspotNetwork.secure;
    BOOL autoJoined = hotspotNetwork.autoJoined;
    double signalStrength = hotspotNetwork.signalStrength;
}
查看更多
登录 后发表回答