2016-02-29 46 views
0

我正在使用下面的代碼來評價aap的用戶..但我很困惑,我怎麼知道用戶評價我的應用程序這次。我想說明的速度警報視圖,但用戶未評級但後來我想展示再次證明alertview:是否有任何委託方法知道用戶給予我的應用評級還是不?

isRate = [NSUserDefaults standardUserDefaults]; 
rate = [isRate integerForKey:@"rating"]; 
[isRate setInteger:rate+1 forKey:@"rating"]; 
NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa"; 
str = [NSString stringWithFormat:@"%@/wa/viewContentsUserReviews?", str]; 
str = [NSString stringWithFormat:@"%@type=Purple+Software&id=", str]; 
str = [NSString stringWithFormat:@"%@id869231055", str]; 

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]]; 

回答

-1

我建議使用Appirater用於顯示警報,以便讓用戶爲您的應用。它非常小並且易於使用,並且跟蹤用戶是否點擊了按鈕來對應用評分,或者他們是否希望稍後提醒或者他們不想再被提醒。您可以在多少天后輕鬆設置,多少次使用或多少重大事件應該顯示評級警報。

相關問題