Xcode报错"This app is not allowed to query for scheme xiaokang100"

1 .当我们使用以下方法来打开另一个App时

NSURL *url = [NSURL URLWithString:@"xiaokang100://"];
if ([[UIApplication sharedApplication] canOpenURL:url]) {
    NSLog(@"OK");
    [[UIApplication sharedApplication] openURL:url];
}

会在控制台报错:

"This app is not allowed to query for scheme xiaokang100"

这是只需要在你的App中的info.plist文件中添加如下字段就行了

LSApplicationQueriesSchemes
Xcode报错
Snip20170323_15.png

网上搜索可以发现很多更详细的方法.

2.如果想要别人的App来打开自己的App只需要在自己的App中添加URLSchemes就行

Xcode报错
Snip20170323_16.png

你可能感兴趣的:(Xcode报错"This app is not allowed to query for scheme xiaokang100")