Post

Replies

Boosts

Views

Activity

Comment on
I tried to use some of the links you wrote, but ios won't open them, here is my code: let url = "settings-navigation://com.apple.Settings.General/STORAGE_MGMT" if let url = URL(string: preferenceType.ios) { UIApplication.shared.open(url) } and the error: _Failed to open URL settings-navigation://com.apple.Settings.General/STORAGE_MGMT: Error Domain=NSOSStatusErrorDomain Code=-10814 "(null)" UserInfo={_LSLine=279, _LSFunction=-[LSDOpenClient openURL:fileHandle:options:completionHandler:]}
May ’25
Comment on iOS 18 open settings URLs
@GeysonAlvarenga i've tried: if #available(iOS 18.0, *) { if let url = URL(string: "settings-navigation://com.apple.Settings.General") { UIApplication.shared.open(url) } } but not work: Failed to open URL settings-navigation://com.apple.Settings.General: Error Domain=NSOSStatusErrorDomain Code=-10814 "(null)" UserInfo={_LSLine=279, _LSFunction=-[_LSDOpenClient openURL:fileHandle:options:completionHandler:]}
Apr ’25