iOS、swift技术交流!iOS 开发IT梦之队

iOS去AppStore里评分

2016-05-23  本文已影响3504人  光明程辉

注意点!!!

1、去AppStore评分有2种方式。由于第一种,不太推荐,因为,还要额外跳转,显得麻烦!下面介绍我常用的方法。就是第二种方法。
2、下面的方法,你只需把代码拷贝就可以使用了!

-- 实现代理协议方法

  - (void) viewDidLoad
  {
     // 把要评分的 appId 放在这 -- 这里测试用 《圣诞愿望》
     [self openAppWithIdentifier:@"940489630"];
  }

  /**
   * 实例化一个SKStoreProductViewController类 -- 评分    用
   */

- (void)openAppWithIdentifier:(NSString *)appId {
SKStoreProductViewController *storeProductVC = [[SKStoreProductViewController alloc] init];
storeProductVC.delegate = self;

NSDictionary *dict = [NSDictionary dictionaryWithObject:appId forKey:SKStoreProductParameterITunesItemIdentifier];
[storeProductVC loadProductWithParameters:dict completionBlock:^(BOOL result, NSError *error) {
    if (result) {
        [self presentViewController:storeProductVC animated:YES completion:nil];
    }
}];

}
#pragma mark - SKStoreProductViewControllerDelegate 嵌入应用商店
/**

补充:

上一篇下一篇

猜你喜欢

热点阅读