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
No edit summary
mNo edit summary
 
(4 intermediate revisions by 3 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 15: Line 15:
}}
}}


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


----
----
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