美文网首页
iOS App 评分

iOS App 评分

作者: 唐人街的乞丐 | 来源:发表于2020-08-13 17:26 被阅读0次

iOS App 评分

方式一

APP 内部评分
只能评分,不能评价详情


显示
选择星星以后

引入头文件

#import <StoreKit/StoreKit.h>
[SKStoreReviewController requestReview];

未上线提交只能是灰色的
仅支持iOS10.3以上版本
且每个APP内每年最多弹出3次评分

方式二

跳转App Store评分
可以评分,可以评价内容


App Store评分
    NSString *APPID = @"";

    NSString *urlStr = [NSString stringWithFormat: @"itms-apps://itunes.apple.com/app/id%@?action=write-review",APPID];
    
    NSURL * url  = [NSURL URLWithString:urlStr];
      [[UIApplication sharedApplication] openURL:url options:@{UIApplicationOpenURLOptionsSourceApplicationKey:@YES} completionHandler:nil];

GitHub地址

相关文章

  • iOS App内评分

    App内评分 苹果在iOS 10.3中增加了App评分的新API,用户可以直接在App内评分,而不用跳转到App ...

  • iOS APP评分

    iOS APP评分时需要调用App Store跳转到对应APP的详情页进行评分。 1、首先需要获取到APP的App...

  • iOS 应用内评分

    iOS 应用内评分 iOS10.3允许开发者敦促用户在 App Store 上对应用进行评分。整个评分过程直接在 ...

  • iOS App 评分

    iOS App 评分 方式一 APP 内部评分只能评分,不能评价详情 引入头文件 未上线提交只能是灰色的仅支持i...

  • iOS App 评分

    一、iOS App内评分 注意: 苹果官方说不能骚扰用户,因此使用此API有非常严格的限制:苹果规定,每台设备、每...

  • ios各个版本内容记录

    iOS10.3 1.APP内打开评分弹框

  • iOS _随笔

    AppDelegate app禁止锁屏 iOS跳转到 App Store下载应用评分 UIView view周围白...

  • iOS 系统评论

    1、app内评分 以前在app内做评论用的是SKStoreProductViewController,iOS10....

  • iOS 应用内评分

    iOS10.3允许开发者敦促用户在 App Store 上对应用进行评分。整个评分过程直接在 app 内完成并提交...

  • iOS App内部评分&&评价

    1、App内评分 在iOS10.3之后官方API提供了应用内就能让用户给App评分的功能。官方文档链接:https...

网友评论

      本文标题:iOS App 评分

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