Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 iOS 应用程序中,作为移动支付选项的一部分,我想指导在其设备上安装了 Square 应用程序的用户将其用作支付选项。
Square 是否有一个自定义 URL 方案可以让我从我的内部启动他们的应用程序?
是的,Square 应用程序确实有一个您可以调用的自定义 URL 架构:square://
square://
您还可以通过以下方法查看应用程序是否安装:
- (BOOL)isSquareInstalled { return [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"square://"]]; }
Square Pay 应用程序使用 URL Scheme square-pay://