I\'m using swift with ios 8.3. I want to open settings app from my application. I know that using the code
UIAp
Try this.
if let appSettings = URL(string: UIApplication.openSettingsURLString) { UIApplication.shared.open(appSettings, options: [:], completionHandler: nil) }
Xcode 11.5 - iOS > 10