3

I need to test network reachability in my iPhone project. Which project is better to use?

Reachability vs UIDevice-Reachability

DrummerB
  • 39,814
  • 12
  • 105
  • 142
m88m
  • 33
  • 3

1 Answers1

1

Reachability if your only issue is to test network reachability. It's apple sample code and it's pretty easy to use.

UIDevice is great for learning but a bit overkill just for network reachability. So in the end either of them will do. Depends on what you want to do.

John Conde
  • 217,595
  • 99
  • 455
  • 496
Radu
  • 3,434
  • 4
  • 27
  • 38