Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
CPNetworkObserver: Difference between revisions - iPhone Development Wiki

CPNetworkObserver: Difference between revisions

From iPhone Development Wiki
(Fix incorrect method signature)
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
'''CPNetworkObserver''' is a part of {{fwlink|AppSupport}} 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 25: Line 25:
Tests whether Wi-Fi is enabled.
Tests whether Wi-Fi is enabled.


== Header ==
== External links ==
 
{{IPFHeader|AppSupport}}
{{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