IOS 审核一直提示 元数据被拒绝,请问是怎么回事呢?

2024-05-11 22:35

1. IOS 审核一直提示 元数据被拒绝,请问是怎么回事呢?

和第三方登陆有关,此时需要做一个判断,看用户中是否安装了相关的应用,如果没有就把相关的按钮等隐藏。  
2. 1 Performance: App Completeness
Thank you for your resubmission.
Guideline 2.1 - Information Needed
We have started the review of your app, but we are not able to continue because we need access to a video that demonstrates your app in use on an iOS device.
Specifically, your demo video does not show your app’s background location and audio features。

扩展资料:
iOS设备可在世界各地通用。30多种语言供你挑选,还可以在各种语言之间轻松切换。由于iOS键盘基于软件而设计,因而有50多种支持特定语言功能的不同版式供你选择,其中包括字符的变音符和日文关联字符选项。此外,内置词典支持50多种语言,VoiceOver可阅读超过35种语言的屏幕内容,语音控制功能可读懂20多种语言。
全球的企业都开始选用iOS设备,因为它具有企业专属功能和高度的安全性。iOS兼容Microsoft Exchange和标准服务器,可发送无线推送的电子邮件、日历和通讯录。iOS在传输、设备内等待和iTunes备份三个不同阶段为信息分别加密,确保你的数据安全。
参考资料来源:百度百科-IOS

IOS 审核一直提示 元数据被拒绝,请问是怎么回事呢?

2. IOS 审核一直提示 元数据被拒绝,请问是怎么回事呢?

和第三方登陆有关,此时需要做一个判断,看用户中是否安装了相关的应用,如果没有就把相关的按钮等隐藏。  
2. 1 Performance: App Completeness
Thank you for your resubmission.
Guideline 2.1 - Information Needed
We have started the review of your app, but we are not able to continue because we need access to a video that demonstrates your app in use on an iOS device.
Specifically, your demo video does not show your app’s background location and audio features。

扩展资料:
iOS设备可在世界各地通用。30多种语言供你挑选,还可以在各种语言之间轻松切换。由于iOS键盘基于软件而设计,因而有50多种支持特定语言功能的不同版式供你选择,其中包括字符的变音符和日文关联字符选项。此外,内置词典支持50多种语言,VoiceOver可阅读超过35种语言的屏幕内容,语音控制功能可读懂20多种语言。
全球的企业都开始选用iOS设备,因为它具有企业专属功能和高度的安全性。iOS兼容Microsoft Exchange和标准服务器,可发送无线推送的电子邮件、日历和通讯录。iOS在传输、设备内等待和iTunes备份三个不同阶段为信息分别加密,确保你的数据安全。
参考资料来源:百度百科-IOS

3. 总结iOS APP应用审核被拒原因

总结一下自己在应用审核中遇到过的问题。
  
 1、应用里面带检测更新按钮
  
 Your app includes an update button or alerts the user to update the app. To avoid user confusion, app version updates must utilize the iOS built-in update mechanism.
  
 Weve attached screenshot(s) for your reference.
  
 Next Steps
  
 Please remove the update feature from your app. To distribute a new version of your app, upload the new app binary version into the same iTunes Connect record you created for the apps previous version. Updated versions keep the same Apple ID, iTunes Connect ID (SKU), and bundle ID as the original version, and are available free to customers who purchased a previous version.
  
 上架之前看到过不能有更新按钮的,然后网上说可以用后台检测,审核的时候关闭后台接口,审核通过开启。然后就上了一个版本,结果还是被拒了。当时急着上线,直接把这个功能去掉就通过了。
  
 2.后台定位服务
  
 Your app uses background location services but does not clarify the purpose of its use in the location modal alert as required in the iOS Human Interface Guidelines .
  
 We've attached screenshot(s) for your reference.
  
 Next Steps
  
 Please reconfigure the UIAlertControllerStyleAlert in your code and specify the intended purpose of using background location in its message field.
  
 刚开始使用NSLocationAlwaysUsageDescription的时候,因为没有写后台定位的目的,然后被退回来了。在NSLocationAlwaysUsageDescription后面加上一句描述,然后就通过了。
  
 3.还是这后台位置服务的问题,之后有个版本上去之后突然又被打回来,问是什么功能需要使用后台定位,What feature require the persistent background location service?(原话)。这真不知道为什么之前那个版本就可以上。
  
 Your app declares support for location in the UIBackgroundModes key in your Info.plist file but does not have any features that require persistent location. Apps that declare support for location in the UIBackgroundModes key in your Info.plist file must have features that require persistent location.
  
 Next Steps
  
 Please revise your app to include features that require the persistent use of real-time location updates while the app is in the background. Please also add the following battery use disclaimer in your Application Description:
  
 "Continued use of GPS running in the background can dramatically decrease battery life."
  
 If your app does not require persistent real-time location updates, please remove the "location" setting from the UIBackgroundModes key. You may wish to use the significant-change location service or the region monitoring location service if persistent real-time location updates are not required for your app features.
  
 在这个问题上被拒了好多次,网上说要加电量警告的描述,然后解释什么功能需要后台位置服务。还以为是审核员不知道我说的是什么功能需要后台位置服务,分别发了文字,图片,甚至还录了个视频过去。然后苹果那边就打电话过来说让我UIBackgroundModes改成NSLocationWhenInUseageDescription,这个也可以使用后台位置。不过这个在后台使用位置的时候电池栏上有一个蓝条提示,不符合APP的要求。后面想了个办法,就是加了导航功能,让这个UIBackgroundModes能通过,之前的后台定位功能自然就能使用了。不过刚开始还是被拒了,赶紧再发一封邮件说明了导航功能在哪里使用,并提供截图,那边一会就通过了。不过加上了导航之后APP大小增加了20M,不需要导航功能的不推荐。
  
 https://github.com/wg689/Solve-App-Store-Review-Problem 这边说明了后台定位服务的话是不能只是把位置传回服务器而在界面上没有显示的,也提供了其他解决方案。这篇博客里面还有其他的审核遇到问题和解决方案的汇总。
  
 4.内购问题
  
 We noticed that your app enables the purchase of content,services,or functionality in the app by means other than the In-App Purchase API,which is not allowed on the App Store.
  
 Specifically,your app enables points,or intermediate currencies,without using the In-App Purchase API. Additionally,please note that the cost of the points or the intermediate currency cannot be included in the purchase price of the app.
  
 Next Steps
  
 While the payment system that you have included may conduct the transaction outside of the app,if the purchasable content,functionality,or services are intended to be used in the app,they must be purchased through IAP,within the app - unless it is of the type referenced in Guideline 3.1.3.
  
 Resources
  
 It may be appropriate to revise your app to use the In-App Purchase API to provide content purchasing functionality.
  
 In-App Purchase provides several benefits,including:
  
 - The flexibility to support a variety of business models.
  
 - Impacting your app ranking by consolidating your sales to one app rather than distributing them across multiple apps.
  
 - An effective marketing vehicle to drive additional sales of new content.
  
 For information on In-App Purchase,please refer to the following documentation:
  
  In-App Purchase for Developers 
  
  In-App Purchase Programming Guide 
  
 For step-by-step instructions on In-App Purchase creation within iTunes Connect,refer to  In-App Purchase for Developers .
  
 大致说明了苹果是不允许使用苹果内购之外的API来购买APP的内容,服务或者功能。这里特别指出了我们APP使用了积分或中间货币,特别去查了一下那些直播平台购买礼物也是通过苹果内购的,他们的手续费由平台和主播分别承担一半。而这对于我们的APP是不合适的,在跟审核人员沟通了几次都没有结果之后,将原本的“金币”改成了“余额”,本以为不会通过的,竟然意外通过审核了。主要是这个金币让苹果认为是一个中间货币违反了审核规则吧,其实这个问题我也不是很明白,就是改了一个词而已,所以在上传的时候尽量不要使用比较有争议的词。
  
 5.声明苹果不是活动赞助商
  
 Your app includes a contest or sweepstakes but it does not:
  
 - Indicate that Apple is not involved in any way with the contest or sweepstakes.
  
 Next Steps
  
 It is necessary to:
  
 - Include an explicit statement in the contest or sweepstakes rules specifying that Apple is not a sponsor.
  
 应用包括比赛或抽奖时,应该表明苹果没有以任何方式参与比赛或抽奖。在活动规则中加上一条说明吧
  
 6.Guideline 2.3.3 - Performance - Accurate Metadata
  
 We noticed that your screenshots do not sufficiently reflect your app in use.
  
 Please see attached screenshots for details.
  
  Next Steps 
  
 To resolve this issue, please revise your screenshots to ensure that they accurately reflect the app in use. For resources on creating great screenshots for the App Store, you may want to review the App Store Product Page information available on the Apple developer portal.
  
 Please ensure you have made any screenshot modifications using Media Manager. You should confirm your app looks and behaves identically in all languages and on all supported devices. Learn how to use Media Manager to add custom screenshots for each display size and localization.
  
 Since your iTunes Connect status is Metadata Rejected , we do NOT require a new binary. To revise the metadata, visit iTunes Connect to select your app and revise the desired metadata values. Once you’ve completed all changes, reply to this message in Resolution Center and we will continue the review.
  
 NOTE: Please be sure to make any metadata changes to all app localizations by selecting each specific localization and making appropriate changes.
  
 应用程序的名称、描述、截图或者预览与应用的内容和功能不相关将会被拒绝。
  
 
  
  
 7.Guideline 5.2.1 - Legal - Intellectual Property
  
 We found that your app facilitates auctions, but you haven’t provided a sufficient Auction Business Approval Certificate (拍卖经营批准证书) for the services in your app. 
  
  Next Steps 
  
 To resolve this issue, please complete the following:
  
 — Provide a copy and/or the direct link to the government website that displays your Auction Business Approval Certificate (拍卖经营批准证书).
  
 — Ensure the seller and artist names associated with your account match the authorized name (企业名称) listed on the Auction Business Approval Certificate (拍卖经营批准证书).
  
 — Ensure that all coins or currencies that were used to enter an auction are returned to the user after an unsuccessful bid. 
  
  Resources 
  
 To provide a copy of the Auction Business Approval Certificate (拍卖经营批准证书):
  
 - Log in to iTunes Connect
  
 - Click on "My Apps"
  
 - Select your app
  
 - Click on the app version on the left side of the screen
  
 - Scroll down to "App Review Information"
  
 - Attach the scanned copy of your Auction Business Approval Certificate (拍卖经营批准证书) in the "Attachment" section
  
 - Click "Save"
  
 Once this information is available, please reply to this message in Resolution Center, and we can continue with our review.
  
 拍卖类型APP需要拍卖经营批准证书。将其上传到附件

总结iOS APP应用审核被拒原因

4. iOS 提交苹果审核App被拒原因

We began the review of your app but aren't able to continue because we need additional information about your app.
  
 At your earliest opportunity, please review the following question(s) and provide as much detailed information as you can. The more information you can provide upfront, the sooner we can complete your review.
  
 Once you reply to this message in Resolution Center with the requested information, we can proceed with your review.
  
 iOS 应用提交审核要持续一周或者更久,在提交之前,我们一定要进行「自我审查」,避免被拒。ASO100 为大家收集整理了2015年 App Store 审核被拒的23个理由,并且附上官方拒绝理由原文,供大家上传应用时对照检查。
  
 应用被拒分为两种:Binary Rejected 和 Metadata Rejected。前者需要重新上传应用并且重新排队,后者只需要修改信息,不需要重新上传应用。
  
 iOS 应用的版本更新必须通过 App Store 进行,自身 App 内不能包含提示更新功能。从2015年3月起,所有包含检查更新功能的 App 都会被拒绝上架。
  
 附被拒理由原文:
   Your app includes an update button or alerts the user to update the app. To avoid user confusion, app version updates must utilize the iOS built-in update mechanism. We’ve attached screenshot(s) for your reference.
   Next Steps
  
 Please remove the update feature from your app. To distribute a new version of your app, upload the new app binary version into the same iTunes Connect record you created for the app’s previous version. Updated versions keep the same Apple ID, iTunes Connect ID (SKU), and bundle ID as the original version, and are available free to customers who purchased a previous version.
  
 接入第三方登录要检测是否安装了第三方客户端,未安装时不要显示对应按钮。2015年9月之前,通常可以采用判断未安装则隐藏登录按钮的方式。但目前隐藏按钮的方式也可能被审核拒绝,QQ 和微博提供了 web 登录的方式,如果判断未安装,需要允许用户使用 webview 的登录方式。苹果在条款中有声明不允许 iOS 应用的正常使用需要依赖另外一个 App。
  
 附被拒理由原文:
   We noticed that third-party app QQ/WeChat is required to use third-party authentication method. The user should be able to login without installing additional applications.
   Next Steps
  
 If you choose to support third-party authentication, please use methods that can authenticate users from within your app, such as a native web-view.
  
 从2014年2月起,Apple 开始拒绝采集 IDFA (identifier for advertising) 却未集成任何广告服务的应用进入 App Store。如果 App 本身没有广告,ASO100.com 建议可以在审核的时候显示一个 Banner 广告,并且放在比较明显的位置,审核通过后关掉即可。
  
 附被拒理由原文:
   We found that your app uses the iOS Advertising Identifier but does not include ad functionality. This does not comply with the terms of the iOS Developer Program License Agreement, as required by the App Store Review Guidelines.
   Specifically, section 3.3.12 of the iOS Developer Program License Agreement states:
   “You and Your Applications (and any third party with whom you have contracted to serve advertising) may us the Advertising Identifier, and any information obtained through the use of the Advertising Identifier, only for the purpose of serving advertising. If a user resets the Advertising Identifier, then You agree not to combine, correlate, link or otherwise associate, either directly or indirectly, the prior Advertising Identifier and any derived information with the reset Advertising Identifier.”
  
 Please remove the iOS Advertising Identifier from your app or add ad functionality to your app.
  
 如果你的 App 内有发帖等UGC(用户产生内容)功能,必须提供用户协议,并留有内容举报功能,否则就会被审核拒绝。
  
 附被拒理由原文:
   We found your app enables the display of user-generated content which may become sexually explicit. Therefore we ask that you put the following precautions in place, to ensure your app remains in compliance with the App Store Review Guidelines.
   Use Moderators to flag and remove inappropriate content
   Require that your users agree to terms (EULA) and these terms must be clear that there’s no tolerance for objectionable content
   Users need a way to flag or report objectionable content and users generating this content
   Developer must act on objectionable content reports within 24 hours by removing the content and ejecting the user who provided the offending content
   Developer needs a method for ejecting users who violate the terms of the EULA
  
 Please keep in mind that it is not sufficient for the user to report an issue through a general user feedback / 反馈 or like/dislike feature of the app. Please ensure that the contents that may become objectionable have a reporting or flagging mechanism readily accessible by the user to allow the user to promptly report or flag the issue and clearly identify the offending content.
  
 应用程序的名称、描述、截图或者预览与应用的内容和功能不相关将会被拒绝。有 App 因为应用截图使用的是自己设计的插画而被审核拒绝。
  
 附被拒理由原文:
   We noticed that your marketing screenshot(s) do not sufficiently reflect your app in use.We’ve attached screenshot(s) for your reference.
   Next Steps
  
 Please revise your screenshots to demonstrate the app functionality in use.
  
 苹果要求应用不能限制只有部分用户可以使用。
  
 附被拒理由原文:
   Your app arbitrarily restrict users by requiring invitation code to register, which is not allowed on the App Store. We’ve attached screenshot(s) for your reference.
   Next Steps
  
 Please revise your app to remove any functionality that limits who can use the app.
  
 一直以来,苹果都不允许iOS开发者在进行软件描述时提到 Android 版本,而自从2015年4月起,在 App 内、截图等任何地方提到安卓、Android 的文字、图标、系统界面都会被拒。曾经有电商 App,因为出现了售卖三星安卓手机而被拒。。。
  
 附被拒理由原文:
   We found that your app and/or its metadata contains inappropriate or irrelevant platform information, which is not in compliance with the App Store Review Guidelines.
   Specifically, your app mentioned other platforms, such as Android.
  
 Providing future platform compatibility plans, or other general platform references, is not appropriate in the context of the App Store. It would be appropriate to remove this information.
  
 App 里有实物奖励的话,不能使用苹果产品(例如 iPhone 、iPad 等)作为奖品。另外一定要声明“奖励由本公司提供,与苹果官方无关”。
  
 附被拒理由原文:
   Your app includes a contest or sweepstakes but it does not:
   Indicate that Apple is not involved in any way with the contest or sweepstakes.
   Next Steps
   It is necessary to:
   Include official rules of the contest or sweepstakes in the app
   Include an explicit statement in the contest or sweepstakes rules specifying that > Apple is not a sponsor
  
 Ensure that the contest or sweepstake prizes are not Apple products
  
 增加一个“恢复购买记录”的按钮即可。
  
 附被拒理由原文:
   We found that your app offers In-App Purchase/s that can be restored but it does not include a “Restore” feature to allow users to restore the previously purchased In-App Purchase/s.
  
 To restore previously purchased In-App Purchase products, it would be appropriate to provide a “Restore” button and initiate the restore process when the “Restore” button is tapped.
  
 对于资讯等 App,在没有进行与用户信息相关的操作时,却强行让用户登录,甚至不登录就无法看到任何内容,有可能会被拒绝。
  
 附被拒理由原文:
   We noticed that your app requires users to register with personal information to access non account-based features. Apps cannot require user registration prior to allowing access to app content and features that are not associated specifically to the user.
   Specifically, your app forces users to login before they can read the news.
   We features that your app requires users to register or log in, prior to accessing non account-based features. Apps cannot require user registration or login prior to allowing access to app content and features that are not associated specifically to the user.
   Next Steps
  
 User registration that requires the sharing of personal information must be optional or tied to account-specific functionality. Additionally, the requested information must be relevant to the features.
  
 iPhone程序必须不经修改就能以iPhone分辨率和2倍iPhone 3GS的分辨率在iPad上运行。即使你的App 只为 iPhone 用户提供,在 iPad 上也必须能够正常显示,否则审核会被拒绝。
  
 附被拒理由原文:
   We noticed that your app did not run at iPhone resolution when reviewed on iPad running iOS 9.1, which is a violation of the App Store Review Guidelines. We’ve attached screenshot(s) for your reference.
   Specifically, the buttons at the bottom of the app are inaccessible when running on iPad.
   Next Steps
  
 Please revise your app to ensure it runs at iPhone resolution on iPad.
  
 对于视频、音乐、图书类的应用很容易因为这一条而被拒。另外 ASO100.com 建议应用内最好不要出现第三方的商标,例如运营商的Logo、影视公司的 Logo 等。
  
 附被拒理由原文一:
  
 We found that your app allows users to download music without authorization from the relevant third-party sources.
   We’ve attached screenshot(s) for your reference.
   Next Steps
   Please provide documentary evidence of your rights to allow music or video content download from third-party sources. If you do not have the requested permissions, please remove the music or video download functionality from your app.
   附被拒理由原文二:
   Your app includes content or features that resemble a well-known, third-party mark, Fox . We’ve attached screenshot for your reference.
   Pursuant to your agreement with Apple, you represent and warrant that your application does not infringe the rights of another party, and that you are responsible for any liability to Apple because of a claim that your application infringes another party’s rights. Moreover, we may reject or remove your application for any reason, at our sole discretion.
  
 Accordingly, please provide documentary evidence of rights to use this content. Once Legal has reviewed your documentation and confirms its validity, we will proceed with the review of your app.
  
 在应用截图、名称、描述等任何地方出现例如诸如 牛逼、绿茶婊、无节操、逗比 等词汇,都会被苹果审核拒绝。
  
 附被拒理由原文:
   We found that your app contains content that many audiences would find objectionable, which is not in compliance with the App Store Review Guidelines.
   Specifically, we noticed your app name 打飞机-简单粗暴 is objectionable.
  
 We encourage you to review your app content and evaluate whether you can modify the content to bring it into compliance with the Guidelines.
  
 不要过度谦虚地在启动画面或者应用名称上加上”beta”字样,苹果不允许测试版产品上架。
  
 附被拒理由原文:
   Your app appears to be a pre-release, test, or trial version with a limited feature set. Apps that are created for demonstration or trial purposes are not appropriate for the App Store and do not comply with the App Store Review Guidelines.
   To ensure compliance with the App Store Review Guidelines, it would be appropriate to revise your app to complete, remove, or fully configure any partially implemented feature(s).
  
 If you would like to conduct beta trial for your app, you may wish to review the TestFlight Beta Testing Guide.
  
 如果应用包含注册功能,注册页面必须提供隐私说明协议按钮或者链接。另外在 iTunes connect 提交新版本的时候,Privacy Policy URL 必须要填写。
  
 附被拒理由原文:
   We noticed that your app includes account registration or access to users’ existing accounts but does not include a privacy policy, which does not comply with the App Store Review Guidelines.
  
 Please update your app metadata to include a privacy policy and ensure that the privacy policy URL you provide directs the user to the intended destination.
  
 审核期间出现崩溃会导致审核被拒。ASO100.com 建议,在审核期间务必保证服务器稳定,避免审核人员审核时出现内容加载失败的情况,导致被拒。
  
 附被拒理由原文:
   We discovered one or more bugs in your app when reviewed on iPhone running iOS 8.1.2 on both Wi-Fi and cellular networks.
   Specifically, no content is fetched when users launch the app.Please see the attached screenshot/s for more information.
   It would be appropriate to revise such issue(s) in your application.
   Next Steps
  
 Please run your app on a device to identify the issue(s), then revise and resubmit your app for review.
  
 如果应用的描述或截图介绍的功能在审核期间没有体现,则会被拒绝,如果介绍文案不够详细也会有一定概率被拒。
  
 附被拒理由原文:
   We found that your app did not achieve the core functionality described in your marketing materials or release notes, as required by the App Store Review Guidelines.
   Specifically, your app does not include the feature of 微信朋友圈分享 that is written in your release note.
  
 It would be appropriate to revise your app to ensure this feature is fully implemented or to revise your Application Description, Release Notes, and/or screenshots to remove this content.
  
 除特殊情况,苹果明令禁止应用内推荐其他APP。
  
 附被拒理由原文:
   The 应用推荐 feature in your app displays or promotes third-party apps, which violates the App Store Review Guidelines. We’ve attached screenshot(s) for your reference.
   Next Steps
  
 Please remove the 应用推荐 feature from your app.
  
 如果你的应用中,包含不真实的系统检测或优化功能,苹果会认为这项功能有误导用户的嫌疑,审核时会被拒绝。
  
 附被拒理由原文:
   We noticed that your app provides potentially inaccurate diagnostic functionality for iOS devices to the user.
  
 We’ve attached screenshot(s) for your reference.
  
 Next Steps
  
 Currently, there is no publicly available infrastructure to support iOS diagnostic analysis. Therefore your app may report inaccurate information which could mislead or confuse your users. We encourage you to review your app concept and incorporate different content and features that are in compliance with the App Store Review Guidelines.
  
 如果你提交的新版本应用与上一版相比,功能上变化过大,比如将游戏升级为工具类应用,或在新版本中完全改掉前一版产品的功能,则会被苹果拒绝。
  
 附被拒理由原文:
   We found that your app did not achieve the core functionality described in your marketing materials or release notes, as required by the App Store Review Guidelines.
  
 Specifically, the app has a whole content swap from a Game app to a Mobile Data Tracking app, which does not provide a good user experience when updating the app.
  
 It would be appropriate to revise your app to ensure this feature is fully implemented or to revise your Application Description, Release Notes, and/or screenshots to remove this content.
  
 If your iTunes Connect Application State is Rejected, a new binary will be required. Make the desired metadata changes when you upload the new binary.
  
 应用程序必须遵守上线地区的法律法规,禁止含有赌博、色情、有偿陪伴等违反法律的内容,尤其为用户提供付费社交服务的APP,例如在线直播类APP,必须严格遵守相关规定。
  
 附被拒理由原文:
   Your app contains content – or facilitates, enables, and encourages an activity – that is not legal in all of the locations where the app is available. Specifically, your app is advertised as a platform to provide paid companionship services.
  
 We’ve attached screenshot(s) for your reference.
   Next Steps
  
 We encourage you to review your app concept and incorporate different content and features that are in compliance with the App Store Review Guidelines.
  
 针对理财、P2P等金融相关产品,苹果增加规定
   开发者的名字必须与APP内的金融机构名字保持一致,否则会被拒。
   且由同一品牌的金融机构提供服务的APP,必须发布在同一个开发者账号跟名称下。
  
 如果你已经代表委托人或者公司发布了这些APP,你的委托人或者公司应该注册iOS开发者账号,并把你添加到他们的开发者账号里,这样你就可以在他们账号下面提交并发布APP了。
  
 附被拒理由原文:
   We found that the Seller and/or Artist names associated with your app do not reflect the name of the financial institution in the app and/or its name and metadata.
  
 To be appropriate for the App Store, your app must be published under a Seller name and Artist name that reflects the financial institution brand, as required by the iOS Developer Program License Agreement.
  
 Section 1.2:
   “You” and “Your” means and refers to the person(s) or legal entity (whether the company, organization, educational institution, or governmental agency, instrumentality, or department) using the Apple Software or otherwise exercising rights under this Agreement. For the sake of clarity, You may authorize contractors to develop Applications on Your behalf, but any such Applications must be submitted under Your developer account.
  
 If you have published these apps on behalf of a client, it would be appropriate for your client to enroll in the iOS Developer Program, then add you to their development team so you can develop an app for them to submit under their developer account.
  
 应用内的功能不能太过单一,苹果虽然理念中提倡“简单”,但并不代表能接受功能不够完善的应用,他们对应用的核心要求,是希望能够给用户更有价值的体验。当然,如果你的产品太有创意,可能苹果的审核员没能理解它的独到之处,这样的情况下,你可以通过申诉来更详细的描述产品优势,以便通过审核。
  
 附被拒理由原文:
   We found that your app only provides a very limited set of features. It only provides an augmented reality reader mechanism with no other functionality. While we value simplicity, we consider simplicity to be uncomplicated – not limited in features and functionality.
  
 We understand that there are no hard and fast rules to define useful or entertaining, but Apple and Apple customers expect apps to provide a really great user experience. Apps should provide valuable utility or entertainment, draw people in by offering compelling capabilities or content, or enable people to do something they couldn’t do before or in a way they couldn’t do it before.
  
 We encourage you to review your app concept and evaluate whether you can incorporate additional content and features to be in compliance with the Guidelines. For information on the basics of creating great apps, watch the video The Ingredients of Great Apps.If you feel we didn’t understand the features of your app, or that we missed key functionality, and your app was incorrectly rejected, you may appeal to the App Review Board.

5. iOS 审核被拒 求解答

原因如下:
1、程序有重大bug,程序不能启动,或者中途退出。 
2、绕过苹果的付费渠道,我们之前游戏里的用兑换码兑换金币。 
3、游戏里有实物奖励的话,一定要说清楚,奖励由本公司负责,和苹果没有关系。 
4、用到苹果的标志。(应用的设计和Apple的Logo风格太像了也会被拒) 
5、网络功能不能正常访问。 
6、图标不能点击,不能点击的图标要置灰,或者直接隐藏。 
7、没有设置default页,启动画面为黑屏,有一定概率被拒绝。 
8、一个应用在线,但你想在发一个豪华版之类的,再开一个应用也会被拒绝。
OS(苹果公司的移动操作系统)锁定iOS是由苹果公司开发的移动操作系统。苹果公司最早于2007年1月9日的Macworld大会上公布这个系统,最初是设计给iPhone使用的,后来陆续套用到iPodtouch、iPad以及AppleTV等产品上。
iOS与苹果的MacOSX操作系统一样,属于类Unix的商业操作系统。原本这个系统名为iPhoneOS,因为iPad,iPhone,iPodtouch都使用iPhoneOS,所以2010WWDC大会上宣布改名为iOS(iOS为美国Cisco公司网络设备操作系统注册商标,苹果改名已获得Cisco公司授权)。

iOS 审核被拒 求解答

6. 如何避免App Store审核被拒,审核被拒的22个原因

1、Terms and conditions(法律与条款)

作为App Store的应用开发者,你必须接受如下条款:Program License Agreement (PLA),Human Interface Guidelines (HIG),以及任何你与apple签订的许可和合同。以下规则和示例是为了协助你的应用更快通过审核上架,而不是修正或取代之前的条款。

2. Functionality(功能)

2.1存在Crash(崩溃,死机)的应用会被拒。

2.2存在明显bug的应用会被拒。

2.3不符合开发者描述的应用会被拒。

2.4有未说明或隐藏特性或有悖描述的应用会被拒。

2.5使用非公开API的应用会被拒。

2.6试图读写非允许范围内的数据的应用会被拒。

2.7试图以任何方式方法下载代码的应用会被拒。

2.8安装或运行其他可执行代码的应用会被拒。

2.9任何“beta”,“演示(demo)”,“试用(trial)”或“测试(test)”版本的应用会被拒。

2.10iPhone应用必须可以无条件运行在iPad上,支持普通iPhone分辨率和2倍iPhone 3GS分辨率。

2.11任何与App Store中上架应用重复的应用会被拒,尤其是已经有了很多的:如放屁,打嗝,手电照明和爱经。

2.12没有用处的应用,web页面简单组合的应用,或任何哗众取宠,不能提供娱乐价值的应用会被拒。

2.13纯粹用于市场推广或广告的应用会被拒。

2.14有意提供隐蔽或虚假功能,却又不能明显标示的应用会被拒。

2.15大于20MB的应用无法通过蜂窝网络下载安装(App Store自动处理)。

2.16多任务应用只允许在后台运行如下相应的服务:VoIP,音频播放,地理位置,任务记录,本地提醒等。

2.17应用只允许通过iOS WebKit框架和WebKit Javascript访问web页面。

2.18鼓励酗酒,使用违法药物,或诱导未成年人饮酒,吸烟的应用会被拒。

2.19提供错误的系统信息或设备数据的应用会被拒。

2.20通过许多版本的类似应用对App Store造成干扰的开发者会被取消IDP身份。

2.21歌曲和电影应该提交到iTunes store。书籍应该提交到iBookstore。

2.22随意通过位置或运营商来限制用户使用的应用会被拒。

2.23加入iCloud支持后,应用必须遵守iOS数据存储指南( iOS Data Storage Guidelines)否则将被拒。

2.24在Newsstand里提交的应用必须遵守Developer Program License Agreement的第1,2和3条,否则将被拒。

2.25与App Store类似的推荐或为其他应用做广告的应用将无法通过App Store审核。

3. Metadata (name, descriptions, ratings, rankings, etc)(描述数据(名称,描述,评级,分类等)

3.1应用或者元数据中提到其他任意移动平台会被拒。

3.2描述数据有未填写项,存留占位符文本会被拒。

3.3描述中提到与应用内容和功能无关信息会被拒。

3.4应用在iTunes Connect与设备上显示的名称应该类似,否则会造成混淆。

3.5不同尺寸的icon要一致,否则会造成混淆。

3.6图标与截屏不符合4+年龄评级的应用会被拒。

3.7应用的内容与所选分类和风格不符会被拒。

3.8开发者有责任把应用放到恰当的分级(Rating)。不恰当的评级可能会被Apple修改,甚至删除。

3.9开发者有责任给应用撰写恰当的关键词。不恰当的关键词可能会被Apple修改,甚至删除。

3.10通过伪造,付费评价或其他非正规手段,获取App Store中较好的评价与星级的开发者会被取消IDP身份。

3.11任何提示需要用户重启iOS设备来安装或运行的应用会被拒。

3.12应用在提交审核过程中,所有涉及到的URL都要处于正常运行状态,例如保密协议,相关支持页面等。

4. Location(位置)

4.1未提示用户且获得用户允许之前收集,传输或使用位置数据的应用会被拒。

4.2使用location-based API来自动控制车辆,飞行器或其他设备的应用会被拒。

4.3使用location-based API进行调度,队伍管理或应急服务的而应用会被拒。

4.4位置数据只能用于应用提供的直接相关功能或服务,或者有授权的广告。

5. Push notifications(提醒推送)

5.1不使用Apple Push Notification(APN) API提供消息推送的应用会被拒。

5.2使用APN服务却没从Apple获取一个Push Application ID的应用会被拒。

5.3在首次推送消息之前未取得的用户允许的应用会被拒。

5.4使用提醒推送服务推送敏感的个人或机密信息的应用会被拒。

5.5使用提醒推送发送主动消息,欺骗或干扰信息的应用会被拒。

5.6应用不可以使用提醒推送发送广告,活动或任何形式的直接推广信息。

5.7应用不可以提供收费的提醒推送服务。

5.8使用APN服务过度占用网络带宽或容量或通过提醒推送大量占用系统资源的应用会被拒。

5.9传输病毒,文件,代码或程序,导致破坏或扰乱正常的APN服务操作的应用会被拒。

6.Game Center(游戏中心)

6.1向终端用户或第三方展示Player ID的应用会被拒。

6.2Player ID被用于Game Center条款款意外的用途的应用会被拒。

6.3试图通过Game Center反查,跟踪,描述,关联,发掘,收割,或利用Player ID,别名或其他信息的开发者会被取消IDP身份。

6.4Game Center信息,例如Leaderboard得分,只能通过Game Center用于应用中。

6.5使用Game Center发送主动消息,欺骗或干扰信息的应用会被拒。

6.6使用Game Center过度占用网络带宽或容量的应用会被拒。

6.7传输病毒,文件,代码或程序,导致破坏或扰乱正常的Game Center操作的应用会被拒。

7.Advertising(广告)

7.1人工刷广告浏览或点击率的应用会被拒。

7.2带有空iAd banner广告的应用会被拒。

7.3设计主要用来展示广告的应用会被拒。

8. Trademarks and trade dress(商标权与商标外观)

8.1应用必须遵守Guidelines for Using Apple Trademarks and Copyrights 和Apple Trademark List中描述的所有条款和条件。

8.2任何误导或暗示Apple为该应用来源或提供商,或Apple以任何形式认可其质量或功能的应用会被拒。

8.3外观与现有Apple产品或广告主题类似或混淆的应用会被拒

8.4应用名称中出现错误的Apple产品拼写(如,GPS for IPhone, iTunz)的应用会被拒。

8.5使用受保护的第三方资源(商标,版权,商业机密,以及其他私有内容),如果要求请提供一份文本形式的使用授权。

9.Media content(媒体内容)

9.1使用MediaPlayer框架以外的方法访问Music Library中媒体数据的应用会被拒。

9.2用户界面模仿任何iPod界面的应用会被拒。

9.3通过蜂窝网络传输的流媒体音频内容不得超过5MB或多余5分钟。

9.4通过蜂窝网络传输超过10分钟流媒体视频内容,必须使用HTTP Live Streaming,并包含一条基线64kbps的音频HTTP Live流。

10.User interface(用户界面)

10.1应用必须遵守Apple iOS Human Interface Guidelines中的所有条款和条件。

10.2外观与iPhone自带应用(如:App Store,iTunes Store和iBookstore)相似的应用会被拒。

10.3不按照Apple iOS Human Interface Guidelines中的描述正确使用系统控件比如按钮,图标等的应用会被拒。

10.4试图创建多桌面/主屏环境或模拟多Widget应用工具的应用会被拒。

10.5修改标准开关标准功能例如:音量增加/减少,响铃/震动的应用会被拒。

10.6Apple和我们的用户都界面报以很高期望,希望他设计的超级简洁,精致,充满创造力,深思熟虑。做到这些确实会消耗很多精力,但是值得。Apple在这方面要求非常高。如果你的用户界面过于复杂,甚至仅仅是不够好,都可能被拒。

11.Purchasing and currencies(购买与流通货币)

11.1通过App Store以外的渠道解锁或开启附加属性或功能的应用会被拒。

11.2使用In App Purchase API (IAP)以外的系统提供购买内容,功能或服务的应用会被拒。

11.3使用IAP为与应用无关的实体商品或商品服务收费的应用会被拒。

11.4应用使用IAP购买积分(Credit)或其他货币,必须在应用中消费。

11.5使用IAP购买的积分(Credit)或货币会过期的应用会被拒

11.6使用IAP收费订阅的内容至少要在7天内有效,而且允许在所有iOS设备间共享。

11.7用到IAP收费项目的应用必须分派到正确的收费类目中。

11.8使用IAP向用户收费以获取iOS内建功能(如摄像头,陀螺仪)的应用会被拒。

11.9包含“出租”内容或服务的应用,在一段时间实效的会被拒。

11.10保险类应用必须免费,遵守发布地区的法律,并且不允许使用IAP。

11.11一般来说,越贵的应用审核就越仔细彻底。

11.12提供收费订阅的应用必须使用IAP,Apple将会按照Developer Program License Agreement中约定的70/30的比例与开发者分账。

11.13应用中如果提供了IAP以外的收费或订阅机制,如:“buy”按钮,跳转到一个购买电子书的web页面,会被拒。

11.14应用可以阅读或播放任何在应用以外取得授权的内容(包括指定的杂志,报纸,书籍,音频,音乐和视频),只要在应用中不允许出现获取授权的收费链接或按钮。Apple不会对在应用外订阅或购买授权项目收取任何费用。

11.15应用只能自动更新订阅的期刊(报纸、杂志),自动更新商业应用(企业、生产力、专业创意、云存储)和媒体应用(视频、音频,声音)将被拒绝。

12.Scraping and aggregation(抓去与整合)

12.1从Apple的页面(如:apple.com, iTunes Store, App Store, iTunes Connect, Apple Developer Programs, 等)抓取内容,或利用Apple页面和服务中的内容进行排名的应用会被拒。)

12.2应用可以使用授权的Apple RSS,例如iTunes Store RSS。)

12.3简单的web页面裁剪,内容整合或链接收集应用会被拒。

13.Damage to device(损害设备)

13.1任何怂恿用户做出可能损坏Apple设备的行为的应用会被拒。

13.2快速耗光设备电量或产生大量热量的应用会被拒。

14.Personal attacks(人身攻击)

14.1任何涉嫌诽谤,侮辱,狭隘内容或打击个人或团体的应用会被拒。

14.2职业政治讽刺家和幽默作家不受该诽谤和狭隘条款约束。

15.Violence(暴力)

15.1展示人或动物被杀戮,致残,枪击,针刺或其他伤害的真实图片的应用会被拒

15.2描述暴力或虐待儿童的应用会被拒。

15.3游戏中的“敌人”不能单独的设定为某特定比赛,文化,真实的政府或组织,或者任何现实事物。

15.4含有以鼓励非法或鲁莽使用的方式描述真实武器的应用会被拒。

15.5带有俄罗斯轮盘游戏的应用会被拒。

16.Objectionable content(负面内容)

16.1介绍过度三俗和粗鲁内容的应用会被拒。

16.2设计来惹怒或恶心用户的应用会被拒。

17.Privacy(隐私)

17.1在未获得用户事先允许,或未告知用户信息将被如何,在哪里使用的情况下,应用不可以传输用户数据。

17.2要求用户提供个人信息,如邮箱地址,生日等,才能使用其功能的应用会被拒。

17.3专门收集未成年人数据的应用会被拒。

18.Pornography(色情)

18.1含有韦氏词典中定义的色情素材的应用会被拒。

18.2经常有用户提供色情内容的应用会被拒。

19.Religion, culture, and ethnicity(信仰,文化和种族)

19.1带有对一种信仰,文化或种族进行诽谤,侮辱,狭隘,或以他们为目标的暴力或伤害内容的应用会被拒。

19.2应用若带有或应用对一种信仰的文字描述,那么这个引用或翻译必须是精确,无歧义的。注释内容可以具有教育性,信息性,但不可以为煽动性。

20.Contests, sweepstakes, lotteries, and raffles(竞赛,赌博,彩票和抽奖)

20.1赌博和竞赛必须是由应用开发者或所有公司发起资助的。

20.2应用中必须展示赌博和竞赛的官方条款,并声明Apple不是资助者,并且在任何情况下与此事无关。

20.3开发者必须经过法律允许才能上线一款抽奖应用,而且抽奖应用必须具备以下要素:报酬,机会,和奖金。

20.4直接允许用户在应用中购买彩票或抽奖的应用会被拒。

21.Charities and contributions(慈善与捐助)

21.1含有向已认证的慈善机构捐助功能的应用必须是免费的。

21.2慈善募捐必须通过短信息或通过Safari访问web页面完成。

22. Legal requirements(法律要求)

22.1应用必须遵守所有发布地区当地法律。开发者有义务了解和遵守各地的法律。

22.2任何带有虚假,欺诈和带有歧义的内容的应用会被拒。

22.3任何召集,推销和股东犯罪和鲁莽行为的应用会被拒。

22.4非法文件共享应用会被拒。

22.5任何设计用来非法赌博工具,包括算牌的应用会被拒。

22.6提供知识拨打电话或知识发送短消息/彩信功能的应用会被拒。

22.7任何开发暗中获取用户密码和私有数据的开发者会被取消IDP身份。

22.8任何非法律执行部门发布的带有DUI检查点信息,或鼓励且协助酒后驾车的应用会被拒。

7. 求助,iOS 元数据被拒绝

2、绕过苹果的付费渠道,我们之前游戏里的用兑换码兑换金币。
3、游戏里有实物奖励的话,一定要说清楚,奖励由本公司负责,和苹果没有关系。
4、用到苹果的标志。(应用的设计和Apple的Logo风格太像了也会被拒)
5、网络功能不能正常访问。
6、图标不能点击,不能点击的图标要置灰,或者直接隐藏。
7、没有设置default页,启动画面为黑屏,有一定概率被拒绝。
8、一个应用在线,但你想在发一个豪华版之类的,再开一个应用也会被拒绝。
9、用了著名游戏的关键字,比如说“愤怒的小鸟”之类的。
10、iPhone版不支持480*320分辨率被决绝。
11、娱乐分类App,拒绝理由:我们认为你的App不具有娱乐性。
12、你的软件不符合中国法律,还打电话来跟我说。(奶奶的,中国哪个法律说不可以FQ。)
13、技术支持地址写的微博地址,于是被拒绝了。原因是:不能将需要登陆才能访问的网址作为技术支持地址。
14、说我们的应用不该用App开发,应该用HTML5。(而且还很热心的给出了参考链接哦)
15、调用截屏功能,当时没注意,是私有API,被拒.改成非私有API实现截屏功能就通过了.
16、开放了文件document分享功能(Application supports iTunes file sharing),被退回,理由:不需要分享,为何开放了.回复邮件说明理由后上线.
17、年龄设置太低,说是有成人内容,被拒.修改内容后上线.
18、同一软件多个版本只是针对不同的国家和内置的语言不同.前面几个上线,后面几个被拒.让改成一个程序做程序内下载资源.
19、程序有crash被拒.修改bug后上线.
20、原因是我们的一个软件只允许联通用户验证真实身份并发布信息。apple要求要么放弃验证,要么允许移动和电信用户验证。

21、APP中出现了某本以乔布斯为封面的本集团出版物图片,遭拒。回复曰:Thank you for submitting your app commemorating Steve Jobs.

We appreciate your efforts honoring Steve. However, we’ve decided to honor his life in other ways and we are not accepting these types of apps.
22、原来做过一个显示假电池的App, 就是显示一个假的的电量, 这样别人找你借手机就可以以没电了为理由不借给他. 结果App Store说会迷惑用户, 让我改简介. 改为简介后苹果中国给我打电话说这个App不用再提交了, 不可能过, 会迷惑用户… 我了个去的 于是这个App就一直存在在我的iTunes Connect里.
23、忘记提供测试账号。(如果你的APP有登录功能)
24、软件有个vip功能,涉嫌应用内收费。
25、拨打电话,涉嫌扣费。
26、图片如果比较清凉的话需要设置软件级别。
27、平板应用要支持最少2个翻转方向。
28、程序内按钮设计成标准的iOS icon。
29、内置付费的内容要明确告诉需要购买,购买前不能摆出来(这个属于运气不好,同样这么做的app很多)

30、提交旗下一款新应用,为统一旗下各个产品的品牌识别,采取了与上一款产品相似的色调和logo结构。苹果拒绝理由是不知道这两款产品有什么区别(其实区别点进去就很明显,连UI布局都大相径庭)。
31、应用内涉及到抽奖的运营活动,未声明与苹果官方无关。
33、自认为第一版产品还不够完善,于是过度谦虚地在启动画面加上了“beta”字样。苹果的反馈是,不允许测试版产品上架。囧,后来翻了一下 Review Guideline 似乎是有提到这点的。
34、链接堆砌,苹果建议用HTML5来做
35、UIWebView 嵌页面片,苹果建议让用户通过浏览器访问,比如爱知乎,开始几个版本通过了,后面的更新一直没提交上去
屏幕坏点检测应用,苹果说会误导用户,未上架
36、登陆账号有两个字母写反了,改正后通过
37、因远程服务器反应慢,苹果的人估计没耐心等,就说有bug给拒了,重新提交一份通过
38、应用标题加了几个描述语句,苹果让在描述中写明达到此目的的操作流程,改正后通过
39、一个第三方的应用,描述文字中有该网站的链接,进去网站后能找到付费链接,苹果说该网站有自己的支付方式,去除网址后通过
40、应用请求使用地理位置的权限,但相关功能藏得比较深,Apple说没找到相关的功能。 — 回信说明后通过

41、应用描述中提到了是全平台应用,可以和其他系统同步数据。因为提到了“Android”的字眼被拒。 — 修改描述后通过
42、 App 的User Agreement中出现了 Beta、Preliminary 等字样。因为是发布第一个版本,产品带有一定的beta性质,但是确实是可发布产品了。按照公司LEGAL部门(外企,对User Agreement要求严格)的要求,必须有类似Beta的说明告知用户,而 Apple 是明确不允许有 Beta 性质的字样的。
43、App 是一个机遇小区的社区工具,顺便做了房产广告,但是 apple 审核说是广告app,不允许发布。
44、应用里有个去给我们打分的功能,被拒了。。(这是不是史上最坑爹的拒绝理由)
45、网络工具软件,要求支持国外的电信运营商网络。
46、曾经做一个 Chinajoy 美女图片 show 的,被认为不适合放在 App Store。
47、iOS 5 的数据存储问题…网络下载的资源不能直接搞在Documents目录下。这个反复整了5次左右才通过审核。
48、忘记提供测试账号……(审核的大爷们你们就不能自己弄个或者注册个账号么)
49、还有一次被拒,我回复说你们所说的问题不存在……后来……通过审核了。-.-
50、菜单中有一个文字包含测试,被打回,说不能上测试版本。

51、app名字包含pad,被打回,说容易名字不能有pad,会被误解为苹果自己的应用,不过同名的iphone版本就通过了…
52、upport地址在safari(仅仅是safari)下由于适配性问题打不开,结果就收到了apple的来信。
53、app里做了次抽奖,奖品是iphone4s,结果他们必须要我们将奖品改成别的,同时申明此活动与苹果公司无关,才可以上架。。。
54、app里做了次抽奖,奖品是iphone4s,结果他们必须要我们将奖品改成别的,同时申明此活动与苹果公司无关,才可以上架。。。
55、在程序的说明信息中有“越狱”俩字,被拒,后来把这俩字去了,PASS。但是:如果我在程序运行中检测出手机越狱了,这结果报出来让不让过?
56、使用GPS常驻后台服务,要我给出一个合适的理由,否则不往下审核,还好,解释一翻过去了。
57、出现“给我们五星好评”之类的文字。
58、应用内提到付费项目但木有通过苹果付费渠道(妄图不让苹果老大赚钱)
59、问我服务是不是只在IOS平台,还是同时支持多平台(我当然拥护苹果老大的领导,木有其他平台,iPhone专属)
60、地图应用,Google大神的LOGO没有显示。

61、google地图下面logo被一个UIView给遮挡了被拒。调整位置后ok
62、对不存在普遍比较标准的几类人进行比较和评判。不比人比动物后ok
63、上传通讯录没有通知。这个等了几个月,苹果的法律纠纷差不多了之后拒掉。然后加了提示后ok。
64、我写的英文App介绍审核人员看不懂,被拒。后然直接用中文。唉。
65、因为上行短信实现用户认证被拒
66、果测试人员的手机号在国外,因为收不到国内短信,被拒
67、他们打开我的一个APP测试,显示空白无内容,哈哈,因为他们相册里没有960*640的图,就说我该程序功能没开发完毕吧?
然后我回了信,然后第二天就上架了。虽然这个小应用是极其简单的。
68、最蛋疼的是,提供了测试用户帐号密码,被我们某个手贱的测试人员测试修改密码的时候给改掉了。。。于是苹果登录不进来,于是杯具
69、IAP价格不能超过99美金(其中有一个是99.99美元,你妹啊!!!!!!!你麻痹多出0.99美金啊!!人家游戏都可以有啊!!!!为什么我们就不行啊!!!)
70、不能强迫用户注册(网络游戏啊亲!!你妹有直接登陆的按钮啊!!!不需要注册的啊!!试一下会shi啊!!!!)

71、support URL无法访问(草草草草草!!!那几天GFW抽风,海外访问国内网站有问题,你妹躲在香港的体谅一下大陆人民啊!!!)
72、没有生成Paid iOS合同(游戏内含IAP,好吧,这个是合作公司搞的乌龙,就不吐槽苹果了)
73、某微博客户端,提供了测试账号,被拒的理由是「账号登录不进去」,还有截屏,我一看,这不把我们提供的测试账号的最后两个字母写反了么…赶紧反馈,之后三天才继续审核,这三天真是太赔了。
74、某门户新闻客户端,免费应用,被拒的理由是「找不到in app purchase的项目对应的界面」,可是我们的应用跟本没有应用内支付,继续反馈…又等了三天…

2012/8/21补充
75、iPhone Human Interface Guidelines中指出了基本UI控件应该如何正确地使用。我们应该按照它的要求来检查Tab Bar、Navigation Bar和Alert View等控件是否符合Apple的口味。
76、确保应用不要模仿设备预装应用的样式和功能,如Music、iTunes Music Store和App Store等。这一条规则似乎是选择性实施的,因为许多浏览器和指南针类的应用都得到了批准。
77、不要加入过多脏话、无理由的性-爱场面和吸毒场面。
78、不要对硬件按钮进行重新编程,赋予其它功能。例如,不要将音量按钮作为照相应用的快门键,不要将home键作为游戏中的开火键。

求助,iOS 元数据被拒绝

8. IOS审核被拒

原因如下:
1、程序有重大bug,程序不能启动,或者中途退出。 
2、绕过苹果的付费渠道,我们之前游戏里的用兑换码兑换金币。 
3、游戏里有实物奖励的话,一定要说清楚,奖励由本公司负责,和苹果没有关系。 
4、用到苹果的标志。(应用的设计和Apple的Logo风格太像了也会被拒) 
5、网络功能不能正常访问。 
6、图标不能点击,不能点击的图标要置灰,或者直接隐藏。 
7、没有设置default页,启动画面为黑屏,有一定概率被拒绝。 
8、一个应用在线,但你想在发一个豪华版之类的,再开一个应用也会被拒绝。
OS(苹果公司的移动操作系统)锁定iOS是由苹果公司开发的移动操作系统。苹果公司最早于2007年1月9日的Macworld大会上公布这个系统,最初是设计给iPhone使用的,后来陆续套用到iPodtouch、iPad以及AppleTV等产品上。
iOS与苹果的MacOSX操作系统一样,属于类Unix的商业操作系统。原本这个系统名为iPhoneOS,因为iPad,iPhone,iPodtouch都使用iPhoneOS,所以2010WWDC大会上宣布改名为iOS(iOS为美国Cisco公司网络设备操作系统注册商标,苹果改名已获得Cisco公司授权)。