iOS 应用内评分

作者: 梦蕊dream | 来源:发表于2018-01-16 14:53 被阅读2325次

    iOS10.3允许开发者敦促用户在 App Store 上对应用进行评分。整个评分过程直接在 app 内完成并提交,不需要离开应用。它使用的是以 iOS 系统规范设计中的弹窗提醒.

    评分分类

    • 跳转App Store 的评论页面
    • 应用内部弹框提醒星评,但是不能撰写评论,而且一年只允许弹出三次.慎重使用

    代码实现:

    #import<StoreKit/StoreKit.h>

    - (void)addAppReview{
        UIAlertController * alertVC = [UIAlertController alertControllerWithTitle:@"喜欢APP 么?给个五星好评吧亲!" message:nil preferredStyle:UIAlertControllerStyleAlert];
        //跳转APPStore 中应用的撰写评价页面
        UIAlertAction *review = [UIAlertAction actionWithTitle:@"我要吐槽" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            NSURL *appReviewUrl = [NSURL URLWithString:[NSString stringWithFormat: @"itms-apps://itunes.apple.com/app/id%@?action=write-review",@"APPID"]];//换成你应用的 APPID
            CGFloat version = [[[UIDevice currentDevice]systemVersion]floatValue];
            if (version >= 10.0) {
                /// 大于等于10.0系统使用此openURL方法
                [[UIApplication sharedApplication] openURL:appReviewUrl options:@{} completionHandler:nil];
            }else{
                [[UIApplication sharedApplication] openURL:appReviewUrl];
            }
        }];
        //不做任何操作
        UIAlertAction *noReview = [UIAlertAction actionWithTitle:@"用用再说" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            [alertVC removeFromParentViewController];
        }];
        
        [alertVC addAction:review];
        [alertVC addAction:noReview];
        //判断系统,是否添加五星好评的入口
        if([SKStoreReviewController respondsToSelector:@selector(requestReview)]){
            UIAlertAction *fiveStar = [UIAlertAction actionWithTitle:@"五星好评" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
                [[UIApplication sharedApplication].keyWindow endEditing:YES];
                [SKStoreReviewController requestReview];
            }];
            [alertVC addAction:fiveStar];
        }
        dispatch_async(dispatch_get_main_queue(), ^{
            [self presentViewController:alertVC animated:YES completion:nil];
        });
    }
    

    运行效果:


    弹框效果图
    点击"我要吐槽"跳转
    点击"五星好评"弹框

    相关文章

      网友评论

        本文标题:iOS 应用内评分

        本文链接:https://www.haomeiwen.com/subject/hrpsoxtx.html