Our App will open WiFi Setting for selecting the machine's SSID as below code.
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"prefs:root=WIFI"]]) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=WIFI"]];
} else {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"App-Prefs:root=WIFI"]];
}
We had publish our app in App Store.
However, I get an app rejected by the App Store after updating my App.
//----------------------------------
From Apple
2. 5 Performance: Software Requirements
Guideline 2.5.1 - Performance - Software Requirements
//----------------------------------
I don't know how to do now because we must open our WiFi setting for setting our WiFi.
Does anyone has any idea?