11 lines
269 B
Swift
11 lines
269 B
Swift
import UIKit
|
|
|
|
func openAppSettings() {
|
|
if
|
|
let appSettingsUrl = URL(string: UIApplication.openSettingsURLString),
|
|
UIApplication.shared.canOpenURL(appSettingsUrl)
|
|
{
|
|
UIApplication.shared.open(appSettingsUrl, completionHandler: nil)
|
|
}
|
|
}
|