abaloush 0 Posted 19 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 640 Posted 12 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 3 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