0

我想测试我的应用的SKStoreReviewControllerAPI 评级。但是,我认为这是块,因为我超过了一年的三次审查限制。开发人员有办法解决这个问题吗?这是我目前正在使用的代码。

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

1 回答 1

1

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

[Appirater setDebug:YES];
于 2018-02-14T16:10:37.683 回答