I'm having a DNS problem in some internet providers in my country and the host configured in my app is not found.
For that, in ANDROID, I found a solution by adding a property in the Java VM.
protected void init() {
System.setProperty("dns.server", "8.8.8.8");
super.init();
}
Is there any similar solution for iOS? Mainly using objective-c? I didn't find anything searching on google.