我正在使用objectiveC中的Stripe付款。我在CheckoutVC.m视图控制器中设置了cvc,帐号等。
- (STPCardParams *)getCardParams {
STPCardParams *cardParams = [[STPCardParams alloc] init];
NSArray *dateCoponents = [txtExpirationDate.text componentsSeparatedByString:@"/"];
cardParams.number = txtCreditCardNo.text;
cardParams.expMonth = [(NSString *)[dateCoponents firstObject] integerValue];
cardParams.expYear = [(NSString *)[dateCoponents lastObject] integerValue];
cardParams.cvc = txtCvv.text;
return cardParams;
}
我的问题是如何设定金额$ 10。 任何人都可以帮助我。
答案 0 :(得分:0)
You can pass amount with your web service/api
Refer this link step by step, http://www.appcoda.com/ios-stripe-payment-integration/
你会发现postStripeToken()函数,你可以在其下看到传递的参数。
let params = ["stripeToken": token.tokenId,
**"amount": self.amountTextField.text.toInt()!,**
"currency": "usd",
"description": self.emailTextField.text]