2010-09-04 66 views
1

我看到有些應用程序有一個選項可供用戶在應用程序內對其應用程序進行評分。這裏的任何人都知道該怎麼做?iPhone/iPad在應用評價?

謝謝 瑟倫

回答

3

我在一篇博客中寫道:here它。用戶將被帶到App Store應用程序,我不相信你將能夠從你自己的應用程序中完成所有工作。

這是它的要點

- (IBAction)gotoReviews:(id)sender 
{ 
    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]; 

    // Here is the app id from itunesconnect 
    str = [NSString stringWithFormat:@"%@289382458", str]; 

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