0

自分のネイティブiOSアプリから直接ネイティブBoxiOSアプリを起動できるようにしたいと思います。たとえば、Dropboxはdb-api-1://、Facebookはfb://、Squareはsquare://、などを使用します。

Box for iOSは同様のURLスキームを使用しますか?もしそうなら、それが解析できるパラメータを概説したドキュメントはありますか?そうでない場合は、アプリから起動する別の方法はありますか?

ありがとう!

4

1 に答える 1

5

アプリのInfo.plistを調べました。

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLName</key>
        <string>com.box.boxapp</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>box</string>
            <string>box-login</string>
        </array>
    </dict>
    <dict>
        <key>CFBundleURLName</key>
        <string>com.box.docinteraction.upload</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>box-upload-all</string>
            <string>box-upload-all-direct</string>
        </array>
    </dict>
</array>

したがって、合計4つのURLスキームがあります。box、box-login、box-upload-all、およびbox-upload-all-directです。しかし、ドキュメントがない場合、それらを使用するのは難しいです...

于 2012-06-16T18:25:29.847 に答える