美文网首页
IOS上传被拒的一点总结

IOS上传被拒的一点总结

作者: andy_tu | 来源:发表于2018-06-29 10:11 被阅读0次

最近上传ios版本被拒2次,导致每次上传后都很紧张。现在分享被拒的原因。

1.Guideline 2.5.1 - Performance - Software Requirements

Your app uses the "prefs:root=" non-public URL scheme, which is a private entity. The use of non-public APIs is not permitted on the App Store because it can lead to a poor user experience should these APIs change.

Continuing to use or conceal non-public APIs in future submissions of this app may result in the termination of your Apple Developer account, as well as removal of all associated apps from the App Store.

翻译大概意思就是:您的应用程序使用“Prfs:root =”非公共URL方案,它是私有实体。在App Store中不允许使用非公开API,因为如果这些API改变,它会导致用户体验不佳。

继续使用或隐瞒非公开API在未来提交此应用程序可能会导致您的苹果开发者帐户的终止,以及删除所有相关的应用程序从应用商店。

解决方法:跳到设置页面的规避方法

 //将上面的跳转字符串转成字符,在进行拼接就好了

        unsigned char root[ROOT_LEN] = {0x41+1,0x70+1,0x70+1,0x2d+1,0x50+1,0x72+1,0x65+1,0x66+1,0x73+1,0x3a+1,0x72,0x6f,0x6f,0x74,0x3d,0x4c,0x4f,0x43,0x41,0x54,0x49,0x4f,0x4e,0x5f,0x53,0x45,0x52,0x56,0x49,0x43,0x45,0x53};

        unsignedcharszRoot[ROOT_LEN];

        for(inti =0; i

        {

            if(i <10)
            {

                szRoot[i] = root[i]-1;

            }else

            {

                szRoot[i] = root[i];

            }

        }

        NSData*encryptString = [[NSDataalloc]initWithBytes:szRootlength:ROOT_LEN];

        NSString *string = [[NSString alloc] initWithData:encryptString encoding:NSUTF8StringEncoding];

        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:string] options:@{} completionHandler:nil];

2.使用系统权限,给用户提示不清楚

解决方法:

提示要写清楚干什么,让用户明白。

分享就到这里,希望大家一起进步。

相关文章

  • IOS上传被拒的一点总结

    最近上传ios版本被拒2次,导致每次上传后都很紧张。现在分享被拒的原因。 1.Guideline 2.5.1 - ...

  • ios 被拒总结

    Guideline 2.1 - Information Needed We have started the re...

  • iOS 上传AppStore 被拒汇总

    (1)、苹果要求版本更新必须使用iOS版本更新内置更新机制。 4. Design: Preamble Design...

  • iOS发布被拒问题解决

    前几天发布公司的APP的ios版本时,被拒了3次,我很无奈T T。所以我也来总结一下,发布被拒的经验。 第一次被拒...

  • iOS被拒原因总结

    [原文链接]http://www.jianshu.com/p/37c47af067e3 1、程序有重大bug,程序...

  • iOS审核被拒总结

    说起iOS审核被拒,太多开发者们都有一把辛酸泪,今天就简单吐槽下我遇到过得被拒的规则还有一些解决办法(希望有用)。...

  • iOS app上架被拒

    iOS篇:上传Appstore被拒常见错误对照表及解决方法(参考) 温馨提示: 首先,建议使用最新的引擎版本(许多...

  • iOS13-NSBluetoothAlwaysUsageDesc

    提交被拒显示如下: 被拒原因: iOS13 将废弃 NSBluetoothPeripheralUsageDescr...

  • AsyncSocket release模式崩溃

    事情的经过是这样的,上传新项目审核, 结果被拒,提示是 意思就是:你的APP在 IPV6 网络状态、iOS10.0...

  • iOS 开发者中心-附件-无法载入文件

    iOS 添加附件时出现“无法载入文件” 提示 会在几个地方出现这种情况: 1、审核被拒添加附件 2、上传应用商店展...

网友评论

      本文标题:IOS上传被拒的一点总结

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