如何在苹果商店直接打开我的应用程序? 我已经尝试过这个,但它会打开itunes应用程序而不是苹果商店应用程序
Linking.openURL(
'itms-apps://apps.apple.com/id/app/halojasa/id1492671277?l=id'
).catch(err => {
console.log('Error from rate us ', err)
})
您必须将
LSApplicationQueriesSchemes
添加到 info.plist 文件。
<key>LSApplicationQueriesSchemes</key>
<array>
<string>itms-apps</string>
</array>
如果您使用可以使用
canOpenURL
方法。它会提示你错误
const link = 'itms-apps://apps.apple.com/id/app/halojasa/id1492671277?l=id';
Linking.canOpenURL(link).then(supported => {
supported && Linking.openURL(link);
}, (err) => console.log(err));