I have an app at the appstore , and i would like to add it in-app purchase, a basic one ,in order to purchase more levels .
I know that the apple sdk is very hard to implement,
I know the mkstorekit is an easy one, but i cant find a guide from scratch to use it .
Whats the best way to do so, any other method ?any good tutorial ?
Thanks a lot.
First you need to initialize MKStoreKit. A sample initializiation code that you can add to your
application:didFinishLaunchingWithOptions:is below In Objective-CYou can check if a product was previously purchased using -isProductPurchased as shown below.
You can check for a product’s expiry date using -expiryDateForProduct as shown below.
To purchase a feature or to subscribe to a auto-renewing subscription, just call
You can also find tutorials of mkstorekit here and here.