I have a Xamarin Forms application where I need to check the Automatic date and time setting value in both Android and iOS devices. For Android I used the below code and getting the value based on the setting.
android.provider.Settings.Global.getInt(getContentResolver(),android.provider.Settings.Global.AUTO_TIME, 0);
However for Xamarin.iOS, I did not find any code to achieve this. Please help me.