Anurag Swarup
Anurag Swarup

Reputation: 1

iOS Network Connetivity Type

My question is can a application be developed on iOS which could tell me if I am connected to my subscribed Network(Packet Data Connection) or any other roaming or WiFi network.

I am in a phase of a feasibility study of a project and the it completely depends on if this is possible in iOS or not. in which I need to know if this is possible in iOS.

Thanks

Upvotes: 0

Views: 265

Answers (1)

Norbert
Norbert

Reputation: 4291

Yes, take a look at this: Reachability.

Basically, it's + (Reachability*) reachabilityForInternetConnection and + (Reachability*) reachabilityForInternetConnection. You can also listen to notifications to get informed when the network status changes.

Upvotes: 1

Related Questions