App Store的链接"年率/评论此应用程序" [英] App store link for "rate/review this app"

查看:144
本文介绍了App Store的链接"年率/评论此应用程序"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想提出一个速度/评论此应用程序功能到我的应用程序。

有没有办法,他们审查程序,直接链接到应用商店屏幕?因此客户不必通过主应用程序的链接点击。谢谢你。

编辑:开始对这个赏金由于缺乏反应。只是为了确保它是一清二楚:我知道我可以链接到我的应用程序的页面在店里,并要求用户从那里点击了查看这个应用程序屏幕。现在的问题是,是否有可能让他们没有任何通过点击直接链接到了评论此应用程序屏幕。


解决方案

这工作在我结束(X code 5 - 适用于iOS 7 - 设备!):

  ITMS-应用://itunes.apple.com/app/idYOUR_APP_ID

有关版本的iOS比7使用较低的旧的:

<$p$p><$c$c>itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=YOUR_APP_ID

code段(你可以复制和放大器;粘贴):

 的#define YOUR_APP_STORE_ID 545174222 //这一个改变你的ID静态的NSString * const的iOS7AppStoreURLFormat = @ITMS-应用://itunes.apple.com/app/id%d
静态的NSString * const的iOSAppStoreURLFormat = @\"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%d\"[NSURL URLWithString:[的NSString stringWithFormat:([[​​的UIDevice currentDevice] .systemVersion的floatValue]≥= 7.0f)? iOS7AppStoreURLFormat:iOSAppStoreURLFormat,YOUR_APP_STORE_ID]]; //将包含正确链接

I want to put a "rate/review this app" feature into my app.

Is there a way to link directly to the screen in the app store where they review the app? So the customer doesn't have to click through the main app link. Thanks.

EDIT: starting a bounty on this due to the lack of response. Just to make sure it is crystal clear: I am aware that I can link to my app's page in the store, and ask the user to click from there to the "review this app" screen. The question is whether it is possible to link directly to the "review this app" screen so they don't have to click through anything.

解决方案

This works on my end (Xcode 5 - iOS 7 - Device!):

itms-apps://itunes.apple.com/app/idYOUR_APP_ID

For versions lower than iOS 7 use the old one:

itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=YOUR_APP_ID

Code snippet (you can just copy & paste it):

#define YOUR_APP_STORE_ID 545174222 //Change this one to your ID

static NSString *const iOS7AppStoreURLFormat = @"itms-apps://itunes.apple.com/app/id%d";
static NSString *const iOSAppStoreURLFormat = @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%d"

[NSURL URLWithString:[NSString stringWithFormat:([[UIDevice currentDevice].systemVersion floatValue] >= 7.0f)? iOS7AppStoreURLFormat: iOSAppStoreURLFormat, YOUR_APP_STORE_ID]]; // Would contain the right link

这篇关于App Store的链接&QUOT;年率/评论此应用程序&QUOT;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆