I have been working on integrating Apple’s example code for In-App Purchase Receipt Validation on iOS into my app’s codebase.
Does anyone know what to do with the two places in VerificationController.m that having the warning lines:
#warning Handle the error here.
as far as I can see the code is parsing some plist data or json data and turning it into a NSDictionary which then gets used to verify that the transaction info matches the receipt.
I don’t know what needs to be done to properly handle the error.
There are no ill effects to ignoring these errors, the code seems to handle it just fine.
You will need to make sure that your implementation of:
can handle receiving a nil NSString though!