且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

从 URL 和传递参数打开 iOS 应用程序

更新时间:2023-01-01 16:52:15

这里有一个关于 在 iOS 中使用自定义 URL Scheme

在教程中,您应该解析 URL 参数并将它们存储在此方法中的应用程序中使用:

As in the tutorial, you should parse the URL parameters and store them to use in the app in this method:

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
  // Do something with the url here
}