我想在Info.pist中设置多个url方案。但我不知道如何在Info.plsit中设置许多url方案。谁可以帮助我,我是一条鱼
答案 0 :(得分:8)
Project Navigator-> YourInfo .plist点击它; 而不是点击图片示例中选定行下的“+”,您将获得其他网址方案的新项目。
这里我们有两个方案:
一个://
2://
EDIT1:正文:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>one</string>
<string>two</string>
</array>
</dict>
</array>
CFBundleURLTypes CFBundleTypeRole CFBundleURLSchemes 第三 CFBundleTypeRole 编辑 CFBundleURLSchemes 一 二
EDIT2:正如第三个选项的文字不同:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>CFBundleURLSchemes</key>
<array>
<string>three</string>
</array>
</dict>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>one</string>
<string>two</string>
</array>
</dict>
</array>
答案 1 :(得分:0)
只需点击任意一行上的+
即可。尝试键入将显示URL SCHEME作为数组的URL。