zoukankan      html  css  js  c++  java
  • 整理 被appstore 拒绝审核通过的原因

    1. 由于使用了私有方法

     activeInstance

     dismissKeyboard

    @try

    {
    Class UIKeyboardImpl = NSClassFromString(@"UIKeyboardImpl");
    id activeInstance = [UIKeyboardImpl performSelector:@selector(activeInstance)];
    [activeInstance performSelector:@selector(dismissKeyboard)];
    }
    @catch (NSException *exception)
    {
    NSLog(@"%@", exception);
    }

    2.metadata 描述有问题

    带有支持ios 5字样,在10月10号之前

    3.带有重大bug,使用测试账户无法登陆成功,提示网络错误

    这个可能是在美国连接公司网站出错有关

    4. 

    Apps that are “beta”, “demo”, “trial”, or “test” versions will be rejected

    app的登陆页当中带有beta1字样

    5. 视频流不支持3g网络下带宽控制问题,没有64/128k的连接

     6.收集用户的地理位置,且本应用与地理位置无关

  • 相关阅读:
    linux下使用OpenCV的一些问题
    Google Colab调用cv2.imshow奔溃
    [LeetCode] Word Search
    信号
    信号
    [Leetcode] Subsets
    [LeetCode] Combinations
    [LeetCode] Minimum Window Substring
    [LeetCode] Set Matrix Zeroes
    sigaction 函数
  • 原文地址:https://www.cnblogs.com/luyinghuai/p/2155014.html
Copyright © 2011-2022 走看看