//主要问题是这句 项目类名和苹果原生类名冲突被拒
Your app uses or references the following non-public APIs:
CertInfo.framework, CertificateViewController
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.
Next Steps
If you are using third-party libraries, please update to the most recent version of those libraries. If you do not have access to the libraries' source, you may be able to search the compiled binary using the "strings" or "otool" command line tools. The "strings" tool can output a list of the methods that the library calls and "otool -ov" will output the Objective-C class structures and their defined methods. These tools can help you narrow down where the problematic code resides. You could also use the "nm" tool to verify if any third-party libraries are calling these APIs.
原因:项目中使用的类名CertificateViewController
和苹果原生类名冲突。
解决办法:修改类名重新提交即可。本项目解决办法是给类名加前缀。
网友评论