'How to launch/open apple pay or wallet application
Is there any possibility to launch/open Apple pay or Wallet application from existing application using deeplinking?
Solution 1:[1]
You can deep link to the wallet using:
if let url = URL(string: "wallet://") {
UIApplication.shared.open(url)
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Sean |
