文档说“通知的对象是完成的 PayPalPayment,与委托方法相同。”
但我还是不明白。这就是我添加通知的方式: [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(payPalCompletionHandler:) name:PayPalTransactionDidSucceedNotification object:nil];
-(void)payPalCompletionHandler:(NSNotification *) notification
{
// How do I get (PayPalPayment *)completedPayment?
}