我正在使用以下代码进行应用内购买及其工作,但我想知道交易收据。我知道它是编码格式的,但我必须将其发送到我的服务器。所以请告诉我在哪里可以找到这个?如何使用此代码为当前 iam 添加代码
- (void)completeTransaction:(SKPaymentTransaction *)transaction {
NSLog(@"completeTransaction...");
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"Alert" message:@"Transaction completed." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
[self provideContentForProductIdentifier:transaction.payment.productIdentifier];
[[SKPaymentQueue defaultQueue] finishTransaction:transaction];
}
这是收据吗??“SKPaymentTransaction:0x147e1860”