-(void)opengPlus:(UIGestureRecognizer *)gestureRecognizer{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"gplus://"]];
}
答案 0 :(得分:0)
这意味着Google Plus应用未安装在设备上,因此无法在此处理URL方案。此URL应由GPlus应用程序处理。
通常在测试时会发生在模拟器中,因此您可以忽略此类警告。但是,如果设备安装了所述应用程序,您将看不到此类警告。
<强>更新强>:
看起来您的应用可以使用plist中的LSApplicationQueriesSchemes打开新的白名单URL问题。
请参阅:http://useyourloaf.com/blog/querying-url-schemes-with-canopenurl.html
类似的东西:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>whatsapp</string>
<string>instagram</string>
<string>comgooglemaps</string>
</array>