Post

Replies

Boosts

Views

Activity

Comment on How to make USSD call on iOS 15.4 beta
The tel URL scheme doesn't take slashes actually. Try tel:0123456. Or let iOS figure it out for you:         var comps = URLComponents()         comps.scheme = "tel"         comps.path = "0123456"         guard let url = comps.url else {             assertionFailure(); return         }         UIApplication.shared.open(url, options: [:]) { success in             if !success {                 NSLog("*** Open URL (url.absoluteString) failed")             }         }
Topic: UI Frameworks SubTopic: UIKit Tags:
Apr ’22
Comment on iOS 18 open settings URLs
I framed it as an accessibility issue, which it is. Older users or users with cognitive impairment have a hard time navigating several layers deep into Settings, remembering where they're supposed to go, etc.
Replies
Boosts
Views
Activity
Jul ’24
Comment on XCode15 debugger is working really slow with iOS 17.0.2
fwiw this didn't work for me on actual device.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Mar ’24
Comment on How to make USSD call on iOS 15.4 beta
The tel URL scheme doesn't take slashes actually. Try tel:0123456. Or let iOS figure it out for you:         var comps = URLComponents()         comps.scheme = "tel"         comps.path = "0123456"         guard let url = comps.url else {             assertionFailure(); return         }         UIApplication.shared.open(url, options: [:]) { success in             if !success {                 NSLog("*** Open URL (url.absoluteString) failed")             }         }
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Apr ’22
Comment on How to make USSD call on iOS 15.4 beta
That's what we're all wondering
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Mar ’22
Comment on How to make USSD call on iOS 15.4 beta
I'd love to see how you're making this work in a WKWebView. When I try (with a form button or a CSS button) it doesn't work.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Mar ’22
Comment on How to make USSD call on iOS 15.4 beta
Sadly no. It's broken in the released version of iOS 15.4 as well 😞
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Mar ’22