简体   繁体   中英

Apple rejected my app that for use on non-public APIs: create , but I didn't found the API named “create”

Apple rejected my app that for use on non-public APIs: create , but I didn't find the API named create .

How can I find the create API in my project?

As you don't know where you use "create" non public api. You can also use grep to find out exactly where you're using those non-publicAPI.

grep -R 'create' *

You can run this common by open Terminal and go to project folder. And run command.

Reference Link: https://stackoverflow.com/questions/39452481

Note: Please take a backup your source before doing this step.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM