Jump to content
Sign in to follow this  
abaloush

Detection of Internet Connection

Recommended Posts

Is there any Delphi component/library/code for IOS development that can detect whether internet connection is present or not present and what type of connection if present [Cellular or WIFI]

Share this post


Link to post
6 hours ago, abaloush said:

Is there any Delphi component/library/code for IOS development that can detect whether internet connection is present or not present and what type of connection if present [Cellular or WIFI]

Yes, there is here.

Share this post


Link to post

var connectionstatus : DWORD;

Result := InternetGetConnectedState( @connectionstatus, 0);

 

( Google InternetGetConnectedState to get all the info. Result is a boolean in this case )

 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×