我正在使用Appirater对我的应用程序进行评级。一切都很好,alert用按钮向我显示消息。但是当我点击“对我的应用程序进行评级”按钮时,Appirater没有应答。警报就这么消失了。下面是我的应用委托中的代码:
[Appirater setAppId:@"579808129"];
[Appirater setDaysUntilPrompt:0];
[Appirater setUsesUntilPrompt:2];
[Appirater setTimeBeforeReminding:2];
[Appirater setDebug:YES];
[Appirater appLaunched:YES];谢谢回复。
发布于 2013-05-15 01:01:23
我在我的应用程序中使用幻灯片菜单。这是有问题的,因为我有控制器,它支持像rootViewController一样的滑动菜单,所以当我加载应用程序控制器时,它是带有菜单的控制器。所以我将以某种方式更改appirater get-root-controller函数。Thx给所有的人!;)
发布于 2013-04-22 22:00:53
除非你在ios6+上,否则Appirater不会把你送到模拟器上的应用商店。您是在ios6+模拟器上测试还是在实际设备上测试?
发布于 2013-04-22 22:13:02
确保您设置了委托,并且还订阅了类中的委托
<@interface MyAppDelegate : UIResponder <UIApplicationDelegate, AppiraterDelegate>{
[Appirater setDelegate:self];
[Appirater setAppId:APPIRATER_APP_ID_HERE];
[Appirater setDaysUntilPrompt:1];
[Appirater setUsesUntilPrompt:10];
[Appirater setSignificantEventsUntilPrompt:-1];
[Appirater setTimeBeforeReminding:2];
[Appirater appLaunched:YES];
[Appirater setDebug:YES];https://stackoverflow.com/questions/16148932
复制相似问题