简体   繁体   中英

iOS: Remove app rating limit for developer?

I want to test my app's SKStoreReviewController API rating. However, I believe it is block because I exceeded the three time review limit a year. Is there a way around this for a developer? Here is the code I am using currently.

    [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];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM