Does anyone have some code I can use in an iPhone app that will let me see strength of wifi? I have a connection intensive operation and prefer they aren't in a spotty zone
Asked
Active
Viewed 5,068 times
3
-
Apple has stated clearly in their documentation that they wouldn't accept any application with intensive networking requirements. You're taking a very risky decision. – ABCD Dec 20 '10 at 05:11
-
I would like to see a solution to this as it would be quite useful when building Apps outside of the walled garden. – ak112358 Dec 15 '11 at 16:48
3 Answers
2
This may help get you going on the right track .....
http://blog.vladalexa.com/2010/07/07/iphone-signal-testing-with-code/

ennuikiller
- 46,381
- 14
- 112
- 137
-
While this app may help the OP get some information about the strength of the current cellular network, all the code it uses to do that are private and would get the app rejected immediately. – Jason Coco Dec 19 '10 at 19:16
-
If what Jason said about the private API things were true, developers should never use such 3-party resources. – Di Wu Dec 20 '10 at 01:30
-
UNLESS you aren't developing for the app store. Not every app is for the consumer... – ak112358 Dec 15 '11 at 16:49
2
I doubt this is possible.
iOS and its SDK isolate applications from doing (and querying) most system-level things. What you could do is to use [NSData dataWithContentsFromURL:...]
to do one or two HTTP requests to ensure that the connection is stable and then do the main data transfers.

BastiBen
- 19,679
- 11
- 56
- 86
0
I wanted to point those of you who land here to a great reference on this question.
Getting the wifi signal for your use on an iOS device:

Community
- 1
- 1

SeeCoolGuy
- 81
- 9