2

アプリの評価に Appirater を使用しています。すべて問題ありません。アラートはボタン付きのメッセージを表示します。しかし、「アプリを評価する」ボタンをタップすると、Appirater my appに答えがありません。アラートが消えました。私のアプリデリゲートに私のコードがあります:

[Appirater setAppId:@"579808129"];
[Appirater setDaysUntilPrompt:0];
[Appirater setUsesUntilPrompt:2];
[Appirater setTimeBeforeReminding:2];
[Appirater setDebug:YES];
[Appirater appLaunched:YES];

お返事Thxです。

4

4 に答える 4

3

Appirater は、ios6+ を使用していない限り、シミュレーターのアプリ ストアにユーザーを送信しません。ios6+ シミュレータまたは実際のデバイスでテストしていますか?

于 2013-04-22T14:00:53.323 に答える
2

デリゲートを設定し、クラスからデリゲートをサブスクライブしてください。

<@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];
于 2013-04-22T14:13:02.383 に答える
-1

アプリケーションでスライド メニューを使用しています。そして、rootViewController のようなスライド メニューをサポートするコントローラーがあるため、問題があります。そのため、appirater コントローラーをロードすると、メニュー付きのコントローラーになります。というわけでappiraterのget-root-controller関数を何とか変えてみます。すべての人にThx!;)

于 2013-05-14T17:01:22.550 に答える