SWRLWifiManagerDelegate Protocol Reference

Conforms to NSObject
Declared in SWRLWifiManager.h

Overview

The SWRLWifiManagerDelegate protocol defines methods used to receive updates about wifi network events from the SWRLWifiManager. Upon receiving these events, you can use the result to update your user interface or take other actions.

The methods of your delegate object are called from the thread associated with the dispatch queue that you used when you added the delegate. See addDelegate:queue:

– wifiManager:didEnterWifi:

Tells the delegate that an access point enter is detected for the connected wifi network

- (void)wifiManager:(SWRLWifiManager *)manager didEnterWifi:(SWRLWifiInfo *)wifi

Parameters

manager

The WifiManager reporting the event

wifi

The WifiInfo object representing the entered access point

Declared In

SWRLWifiManager.h

– wifiManager:didDwellWifi:

Tells the delegate that the user has dwelled in a wifi network

- (void)wifiManager:(SWRLWifiManager *)manager didDwellWifi:(SWRLWifiInfo *)wifi

Parameters

manager

The WifiManager reporting the event

wifi

The WifiInfo object representing the entered access point

Declared In

SWRLWifiManager.h

– wifiManager:didExitWifi:

Tells the delegate than an access point exit is detected for the connected wifi network

- (void)wifiManager:(SWRLWifiManager *)manager didExitWifi:(SWRLWifiInfo *)wifi

Parameters

manager

The WifiManager reporting the event

wifi

the WifiInfo object representing the exited access point

Declared In

SWRLWifiManager.h