Reputation: 927
When I validate my project in Xcode I get an error:
The app references non-public selectors in Payload/appname.app/appname:setResult:
I've searched for setResult
in my project, but there are no matches.
I've submitted my app for review with this error...but now I am afraid that it will be rejected...
I use two 3d party frameworks:
and some Apple frameworks:
Does anybody know how can I fix that error?
UPDATE: Despite the error I've passed a review without any problems.
Upvotes: 3
Views: 568
Reputation: 4447
setResult may be a property setter… look for "@property" with the name "result".
Upvotes: 0