I am new to iPhone development, i have implemented paypal sdk in my iPhone app and check with sandbox environment, every thing is working perfectly,
however i need to find transaction id returned by paypal after successfully done.
I have checked with this function below
- (void)paymentSuccessWithKey:(NSString *)payKey andStatus:(PayPalPaymentStatus)paymentStatus
{
status = PAYMENTSTATUS_SUCCESS;
}
however it is only showing me the status.
Have you looked at the sample app provided from PayPal.. Here is the delegate method from the sample app, follow this you can get the transactionId from this…