Reputation: 61
Our app uses MKStoreKit for in-app purchases. We recently updated everything to iOS8 but we are having trouble building MKStoreKit with Xcode 6.
The file that is having trouble is VerificationController.m
. We have the latest version from github. The build errors are in checkReceiptSecurity
. Use of Undeclared Identifier ‘outLabel’
That same function also complains about encodeBase64
and decodeBase64
.
Upvotes: 0
Views: 220
Reputation: 4007
See this question for the solution of the "use of undeclared identifier" errors in Xcode 6:
xCode 6 how to fix "Use of undeclared identifier" for automatic property synthesis?
Upvotes: 0