Reachability versus UIDevice-Reachability

I need to check network availability in my iPhone project. Which project is better to use?

Reachability vs UIDevice-Reachability

+3
source share
1 answer

Reach if your only problem is to check network availability. This is a sample of apple code, and it is pretty easy to use.

UIDevice is great for learning, but only network availability is a bit overwhelming. Therefore, in the end, any of them will do. Depends on what you want to do.

+1
source

Source: https://habr.com/ru/post/1791159/


All Articles