3

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:

  • FBSDKCoreKit (lates ver.)
  • GoogleMobileAds (lates ver.)

and some Apple frameworks:

  • gameKit
  • storeKit
  • iAd
  • AVFoundation;

Does anybody know how can I fix that error?

UPDATE: Despite the error I've passed a review without any problems.

Dan Fabulich
  • 37,506
  • 41
  • 139
  • 175
Edgar
  • 898
  • 2
  • 12
  • 36

2 Answers2

2

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

dragosaur
  • 818
  • 1
  • 8
  • 10
0

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

geowar
  • 4,397
  • 1
  • 28
  • 24