构建警告会影响 iOS 应用商店审批流程吗?
当应用程序正在经历应用程序商店审批流程时,Apple 的人员会检查项目中的警告,还是只检查错误?
例如,我的许多 NIB 文件上都有此警告:
不支持的配置:设置了标题但使用系统标识符(这些属性是互斥的;标题将被忽略)
这会成为 Apple 拒绝我的应用程序进入应用程序商店的原因吗?
When an app is undergoing the app store approval process, do the people at Apple check the warnings in your project, or do they only check for errors?
e.g. I have this warning on a lot of my NIB files:
Unsupported Configuration: Title set but using a system Identifier (These attributes are mutually exclusive; the Title will be ignored)
Will this be a reason for Apple to reject my app for the app store?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apple 不会检查您项目中的警告,因为他们不能。他们不会获取您的应用程序的源代码,只会获取已编译的二进制文件和支持文件。只要你遵守规则,就应该没问题。
至于你的问题的具体情况:我非常怀疑,但是尽管如此,你绝对应该瞄准一个编译时没有警告的项目,就像一般的编程实践一样。
Apple won't check for warnings in your project, because they can't. They don't get the source code to your app, only the compiled binary and supporting files. So long as you follow the rules, you should be fine.
As for the specifics of your question: I very much doubt it, but nevertheless, you should definitely aim for a project which compiles without warnings, just as a general programming practice.