sy_flutter_wechat icon indicating copy to clipboard operation
sy_flutter_wechat copied to clipboard

微信支付iOS回调有问题

Open CrazyCoderShi opened this issue 5 years ago • 0 comments

无法回调,断点调试,下面的方法没有走

- (void)onResp:(BaseResp *)resp{
    if([resp isKindOfClass:[PayResp class]]){
        self.result(@(resp.errCode));
        NSLog(@"支付结果:retcode = %d, retstr = %@",resp.errCode,resp.errStr);
    }
    NSLog(@"回调结果:retcode = %d, retstr = %@",resp.errCode,resp.errStr);
}

CrazyCoderShi avatar Mar 11 '19 03:03 CrazyCoderShi