About 6,910,000 results
Open links in new tab
  1. iOS 18.0 Shared Extention Open App URL Can't Work

    Sep 19, 2024 · The code that you posted tries to use an implementation to call openURL (:), which is deprecated and causes problems on iOS 18. So you need to replace the use of …

  2. Unable to open app settings in iOS 18 MAUI - Stack Overflow

    Nov 21, 2024 · Has anyone encountered an issue in their MAUI program where opening the app settings works on earlier iOS versions but fails on iOS 18? …

  3. objective c - openURL: deprecated in iOS 10 - Stack Overflow

    Apple introduced the openURL: method as a way to open external links with iOS 2. The related function canOpenURL: got some privacy controls in iOS 9 to stop you from querying devices …

  4. ios - Method openURL:options:completionHandler compatibility in ...

    Oct 15, 2016 · The new UIApplication method openURL:options:completionHandler:, which is executed asynchronously and calls the specified completion handler on the main queue (this …

  5. android - Open Url in default web browser - Stack Overflow

    May 5, 2017 · I am new in react-native and i want to open url in default browser like Chrome in Android and iPhone both. We open url via intent in Android same like functionality i want to …

  6. ios - How to open a URL in Swift? - Stack Overflow

    Sep 17, 2016 · openURL has been deprecated in Swift 3. Can anyone provide some examples of how the replacement openURL:options:completionHandler: works when trying to open a url?

  7. .NET Maui AppLink OnAppLinkRequestReceived doesn't fire on iOS

    Apr 18, 2023 · 0 According to this similar issue about AppLinks doesnt work on iOS on the github, you can try to override the OpenUrl method the AppDelegate.cs. Such as: public override …

  8. Open a URL on Form Submit Event - Google App Script

    I am using the sample code provided by Serge insas found here: Google Apps Script to open a URL I have modified the code slightly as seen below: Code.GS function modalUrl(){ …

  9. Universal deep link on .Net MAUI iOS is not handled by the app

    Mar 17, 2023 · Here is what I have in Info.plist: I expect the user to get options what to open upon clicking the link: either the Teams app, or Teams website, or our app, and execution to come …

  10. How to launch Safari and open URL from iOS app - Stack Overflow

    Sep 14, 2012 · 21 Take a look at the -openURL: method on UIApplication. It should allow you to pass an NSURL instance to the system, which will determine what app to open it in and launch …