给苹果商店里的产品来一个评价
时间:2014-08-07 18:09:20
收藏:0
阅读:321
// 系统大于等于7.0
if ([UIDevice currentDevice].systemVersion.floatValue >= 7.0)
{
url = [NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id88888888"];
}
else
{
url = [NSURL URLWithString:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=88888888"];
}
上面的88888888对应于要评价的产品在苹果商店中链接中的产品id。
原文:http://www.cnblogs.com/zhaodazhou/p/3897511.html
评论(0)