another.im-ios/old/Helpers/UIApplication+Extensions.swift
2024-08-11 13:09:29 +02: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)
}
}