Hello,
I am working with StoreKit and I have implemented code that gives me a successful message coming back from the Sandbox environment. The only issue is that nothing is firing to let my app know the transaction has been successful.
I do have a successful function and the app delegate is defined:
I never see "Successful Transaction" in on the console. Any advise on how to debug this issue?
FM
I am working with StoreKit and I have implemented code that gives me a successful message coming back from the Sandbox environment. The only issue is that nothing is firing to let my app know the transaction has been successful.
I do have a successful function and the app delegate is defined:
Code:
- (void)completeTransaction:(SKPaymentTransaction *)transaction
{
[self recordTransaction:transaction];
[self provideContent:transaction.payment.productIdentifier];
[self finishTransaction:transaction wasSuccessful:YES];
NSLog(@"Successful Transaction!");
}
I never see "Successful Transaction" in on the console. Any advise on how to debug this issue?
FM