openshare
openshare copied to clipboard
请问支付宝完成支付后 怎么回调APP
-(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
在这里该怎么写
谢谢!
//跳转支付宝钱包进行支付,处理支付结果 [[AlipaySDK defaultService] processOrderWithPaymentResult:url standbyCallback:^(NSDictionary *resultDic) { DLog(@"result ---- = %@",resultDic); if ([[resultDic valueForKey:@"resultStatus"] intValue] == 9000) { [[NSNotificationCenter defaultCenter] postNotificationName:kCZJAlipaySuccseful object:resultDic]; } }];