iOS App Rejected : non-public APIs

后端 未结 5 953
醉话见心
醉话见心 2020-12-13 22:02

The same app has already been approved twice before but after some changes like set the image view and submitting the app again, Apple rejected my app for following errors:<

5条回答
  •  囚心锁ツ
    2020-12-13 22:56

    The last time I encountered this was because of a namespace collision between methods in my code and private methods in the Cocoa API. You can also use grep to find out exactly where you're using those selectors:

    grep -R 'setResult:' *
    

提交回复
热议问题