当前位置: 首页 > 知识库问答 >
问题:

从Youtube iOS应用程序到我的代号一个iOS应用程序的共享url

夏意蕴
2023-03-14

我需要分享一个视频链接从Youtube应用程序到我的代号一个应用程序在iOS上。

这似乎是可能的,根据:https://stackoverflow.com/a/38036939/1277576

ios.plistInject=<key>CFBundleURLTypes</key><array><dict><key>CFBundleURLName</key><string>net.informaticalibera.myappname</string></dict><dict><key>CFBundleURLSchemes</key><array><string>https</string></array></dict></array>
ios.urlScheme=<string>https</string>
public void start() {
        if (current != null) {
            current.show();
            return;
        }

        String url = Display.getInstance().getProperty("AppArg", null);

        Form hi = new Form("Test case", BoxLayout.y());
        if (url != null) {
            hi.add(new SpanLabel("Intercepted URL:\n" + url));
        } else {
            hi.add(new Label("No URL was intercepted"));
        }
        hi.show();
    }

共有1个答案

冯敏达
2023-03-14

您还需要在本机代码中实现它,而且我认为xcode项目也需要进行更改,如果我记得正确的话,那是因为我刚才研究过这个问题。目前,我们没有对此用例的官方支持,但您可以为此创建一个RFE。

 类似资料: