自定义URL架构无法打开应用程序

时间:2011-10-16 13:34:31

标签: iphone ios url schema openurl

我遇到自定义网址架构的问题。我认为我已经正确配置它但如果应用程序处于“后台”(即我可以看到它双击主页按钮)它不会打开应用程序当我点击时打开应用程序链接。

<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.test</string>
<key>CFBundleURLSchemes</key>
<array>
<string>test</string>
<string>test1</string>
</array>
</dict>
</array>

链接

<a href="test://this_is_a_test">TEST</a>

其他应用程序工作正常,但不是我的。

谢谢, 利玛

1 个答案:

答案 0 :(得分:0)

return NO;方法中的任何地方- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation了吗?

除了返回NO之外,我无法想到任何导致它无法打开的内容。