abaloush 0 Posted 21 hours ago 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
Dave Nottage 641 Posted 14 hours ago 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
emileverh 28 Posted 6 hours ago 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