简体   繁体   中英

Ios Appirater is not working properly in Ios 10

rate the app in ios , so i am using Appirater framework . but it's not working properly . Here is my code . after 5 day i have to set . and i am in debug mode .

 [Appirater setAppId:@"456546456"];
    [Appirater setDaysUntilPrompt:0];
    [Appirater setUsesUntilPrompt:0];
    [Appirater setSignificantEventsUntilPrompt:-1];
    [Appirater setTimeBeforeReminding:0];
    [Appirater setDebug:YES];
    [Appirater appLaunched:YES];

when i click on button that time i have to open this alert here is my code.

[Appirater userDidSignificantEvent:YES];

You need to pass a positive value to setSignificantEventsUntilPrompt: . A negative value configures Appirater to ignore significant events, which is why you're call to userDidSignificantEvnet: does nothing.

Also, remove setDebug: . It's not useful for you here. :-)

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