提交前如何获取app在appstore中的link
How to get the link of the app in appstore before submission
我正在 IOS 设备上开发应用程序,但是我想知道如何在发布应用程序之前获取 link 应用程序,这样我就可以集成一个 Action Sheet 让用户选择他想在应用程序商店中留下评论的天气。
我已连接到 iTunes Connect,当我点击查看应用商店中的应用程序时,我收到错误提示该应用程序位于美国商店,而我正在阿曼商店开发!.
https://itunes.apple.com/app/id{添加您注册的应用 ID}
您可以从 iTunes connect 获取您的应用程序 ID。它对每个应用程序都是独一无二的。
Note : In development phase you will get error but once application
become live that error will not appear.
If you wanna try then get app id of any existing live app & add it in
above URL.
You can get app id of any application by just googling the name of
that application
您只需要您的 applicationBundleID 即可将用户导航至应用商店。可以参考link https://github.com/nicklockwood/iRate 在此你只需要在AppDelegate
中编写如下代码
#import "iRate.h"
+ (void)initialize
{
[iRate sharedInstance].applicationBundleID = @"com.xxxx.projectName";//Your application bundle identifire
[iRate sharedInstance].usesUntilPrompt=3;
[iRate sharedInstance].daysUntilPrompt=0;
}
您不需要添加警报。该框架将显示弹出窗口。我想这就是你想要的。希望对你有用...
我正在 IOS 设备上开发应用程序,但是我想知道如何在发布应用程序之前获取 link 应用程序,这样我就可以集成一个 Action Sheet 让用户选择他想在应用程序商店中留下评论的天气。
我已连接到 iTunes Connect,当我点击查看应用商店中的应用程序时,我收到错误提示该应用程序位于美国商店,而我正在阿曼商店开发!.
https://itunes.apple.com/app/id{添加您注册的应用 ID}
您可以从 iTunes connect 获取您的应用程序 ID。它对每个应用程序都是独一无二的。
Note : In development phase you will get error but once application become live that error will not appear.
If you wanna try then get app id of any existing live app & add it in above URL.
You can get app id of any application by just googling the name of that application
您只需要您的 applicationBundleID 即可将用户导航至应用商店。可以参考link https://github.com/nicklockwood/iRate 在此你只需要在AppDelegate
中编写如下代码#import "iRate.h"
+ (void)initialize
{
[iRate sharedInstance].applicationBundleID = @"com.xxxx.projectName";//Your application bundle identifire
[iRate sharedInstance].usesUntilPrompt=3;
[iRate sharedInstance].daysUntilPrompt=0;
}
您不需要添加警报。该框架将显示弹出窗口。我想这就是你想要的。希望对你有用...