In-App Purchase Library With A Blocks Based Syntax For Working With StoreKit And More

I’ve mentioned a neat library allowing you to set up your in-app purchases with a .plist file, and here’s a StoreKit wrapper with some extra enhancements providing a very clean syntax called RMStore.

RMStore from RobotMedia provides a lightweight framework for in-app purchases.

RMStore enhances StoreKit with blocks, and notifications and also provides helpers for easier receipt verification and purchase management.

Here’s an example from the readme showing how easy it is to set up a product purchase with RMStore:

[[RMStore defaultStore] addPayment:productID success:^(SKPaymentTransaction *transaction) {
    NSLog(@"Purchased!", @"");
} failure:^(SKPaymentTransaction *transaction, NSError *error) {
    NSLog(@"Something went wrong", @"");
}];

You can find RMStore on Github here.

Thanks to Tom for the submission.

FacebookTwitterDiggStumbleUponGoogle Plus

Original article: In-App Purchase Library With A Blocks Based Syntax For Working With StoreKit And More

©2013 iOS App Dev Libraries, Controls, Tutorials, Examples and Tools. All Rights Reserved.

Leave a Reply

Your email address will not be published. Required fields are marked *