In my project I have 5 products. So I need to buy 3 products to send payment request for those particular productID's, do I need to loop it like below.
for (int i;i<[productsID's count];i++)
{
skmutablepayment *payment =[skmutablepayment paymentwithproductidentifier:
[product objetatindex:i]];
}
I know we need to use quantity property but I need the payment only for specific products which I have selected. How do I pass those selected id's to skpayment?