在iOS9中应用调用其他APP时,报出:“This app is not allowed to query for scheme”错误。
解决方法:
除了要在项目info URL Types中设置URL Schemes,还需要在info.plist里面添加可信任的调用app。
<key>LSApplicationQueriesSchemes</key>
<array>
<string>urlscheme</string>
<string>urlscheme2</string>
<string>urlscheme3</string>
<string>urlscheme4</string>
</array>