iOS开发 点击跳转到App Store 或者 点击按钮去评价
Posted 我不是冰红茶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS开发 点击跳转到App Store 或者 点击按钮去评价相关的知识,希望对你有一定的参考价值。
//跳转到应用页面
[[
UIApplication
sharedApplication
]
openURL
:[
NSURL
urlWithString
:str]];
//跳转到评价页面
NSString
*str = [
NSString
stringWithFormat
:
@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id;=%d"
,
appid ];
[[
UIApplication
sharedApplication
]
openURL
:[
NSURL
urlWithString
:str]];
以上是关于iOS开发 点击跳转到App Store 或者 点击按钮去评价的主要内容,如果未能解决你的问题,请参考以下文章