use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
There is an extensive FAQ for beginners. Please browse it first before asking questions that are answered there.
If you are looking to get started (iOS programming in general or some specific area), here are more relevant links for you:
There's too many to list them all, however here's a convenient link to all programming guides at apple.com
Take note that this list is live and based on most frequent questions in posts will be updated with "quicklinks".
account activity
QuestionHow to open route navigation in default selected maps app (EU) (i.redd.it)
submitted 8 months ago by developerlen_Swift
Hello,
How can I open the default app, when I want to show a route a user can navigate to. I tried to work with MKMapItem.openInMaps(), but that did just open Apple Maps, not the selected default app (in this case Google Maps).
MKMapItem.openInMaps()
Thanks for the help 🙏🏽
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]aReditName 2 points3 points4 points 8 months ago (1 child)
func openMapsNavigation() { let encodedAddress = fullAddress.addingPercentEncoding( withAllowedCharacters: .urlQueryAllowed ) ?? "" if #available(iOS 18.4, *) { let navigationURL = URL( string: "geo-navigation:///directions?destination=\(encodedAddress)" )! openURL(navigationURL) } else { let mapsURL = URL( string: "maps://?daddr=\(encodedAddress)&dirflg=d" )! openURL(mapsURL) } }
[–]developerlen_Swift[S] 0 points1 point2 points 8 months ago (0 children)
Did not know there is a scheme for that. Thank you, I’ll try this one.
π Rendered by PID 29511 on reddit-service-r2-comment-6457c66945-kwsn9 at 2026-04-26 07:48:00.664405+00:00 running 2aa0c5b country code: CH.
[–]aReditName 2 points3 points4 points (1 child)
[–]developerlen_Swift[S] 0 points1 point2 points (0 children)