I want to open WIFI setting section from my iOS application, my code was working well before Swift 3 with iOS 9.2
if let settingsURL = URL(string: AppSetting
Edited 26-02-20, Pay attention, in versions later than ios 10 your binary will be rejected
It's possible on iOS 10 and Swift 3
let url = URL(string: "App-Prefs:root=WIFI") //for WIFI setting app let app = UIApplication.shared app.openURL(url!)