注意看,后台返回来的签名字符串,在Xcode 中打印出来有&;, 导致在调用支付宝时一直出现系统繁忙,以下为正确的字符串。
response=[response stringByReplacingOccurrencesOfString:@"&"withString:@"&"];用这个方法替换,可解决这个问题。
注意看,后台返回来的签名字符串,在Xcode 中打印出来有&;, 导致在调用支付宝时一直出现系统繁忙,以下为正确的字符串。
response=[response stringByReplacingOccurrencesOfString:@"&"withString:@"&"];用这个方法替换,可解决这个问题。