another.im-ios/Monal/another.im/Helpers/UIApplication+Extensions.swift
2024-11-19 17:07:51 +01:00

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)
}
}