iOS:删除开发人员的应用程序评级限制



我想测试我的应用程序的SKStoreReviewController API额定值。但是,我相信这是障碍,因为我每年超过了三次审查限制。开发人员有办法解决这个问题吗?这是我当前正在使用的代码。

    [Appirater setAppId:kAppId];
    [Appirater setDaysUntilPrompt:0];
    [Appirater setUsesUntilPrompt:10];
    [Appirater setSignificantEventsUntilPrompt:-1];
    [Appirater setTimeBeforeReminding:2];
    [Appirater setDebug:NO];
    [Appirater appLaunched:YES];

根据Appirater文档,您必须打开调试模式以每次开发中显示请求:

[Appirater setDebug:YES];

最新更新