CPNetworkObserver: Difference between revisions

From iPhone Development Wiki
No edit summary
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''CPNetworkObserver''' is a part of [[AppSupport.framework]] which allows you to query some information regarding networking status on iOS.
'''CPNetworkObserver''' allows you to query information regarding networking status on iOS.


== Methods ==
== Methods ==


{{function signature
{{function signature
|signature=-(CPNetworkObserver *)sharedNetworkObserver;
|signature=+(CPNetworkObserver *)sharedNetworkObserver;
}}
}}


Line 24: Line 24:


Tests whether Wi-Fi is enabled.
Tests whether Wi-Fi is enabled.
== External links ==
{{IPFHeader|AppSupport}}

Latest revision as of 16:34, 26 October 2014

CPNetworkObserver allows you to query information regarding networking status on iOS.

Methods

Signature +(CPNetworkObserver *)sharedNetworkObserver;

Obtains the shared network observer.


Signature -(BOOL)isNetworkReachable;

Tests if the network is reachable. (has shown unrealiable at times)


Signature -(BOOL)isWiFiEnabled;

Tests whether Wi-Fi is enabled.

External links