Edgar
Edgar

Reputation: 927

Xcode Validation Error: non-public selectors

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

Answers (2)

dragosaur
dragosaur

Reputation: 838

Including Bolts.framework in your project will fix the issue.

Upvotes: 2

geowar
geowar

Reputation: 4447

setResult may be a property setter… look for "@property" with the name "result".

Upvotes: 0

Related Questions