I am stuck with setting up my in-app purchases.
I can't get to get this right:
SKPayment *paymentRequest = [SKPayment paymentWithProduct: @"co.za.nideo.100shotsbuybeer"];
I got it from
SKPayment *paymentRequest = [SKPayment paymentWithProductIdentifiers: @"co.za.nideo.100shotsbuybeer"];
but this seems to be deprecated. How can I get the first piece of code to work?
It seems to nee a SKProduct but I don't know how to create/init such an object.