1

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?

Jason
  • 11,744
  • 3
  • 42
  • 46
wangXiang
  • 11
  • 2

1 Answers1

0

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.

Community
  • 1
  • 1
Patrick R
  • 6,621
  • 1
  • 24
  • 27