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:
NSLog(@"Purchased!", @"");
} failure:^(SKPaymentTransaction *transaction, NSError *error) {
NSLog(@"Something went wrong", @"");
}];
You can find RMStore on Github here.
Thanks to Tom for the submission.
- Open Source Library That Makes Working With Store Kit Easier
- Lightweight iOS StoreKit Wrapper For Easier Product Fetching And Transaction Handling
- StoreKit Add-On Library Adding A Blocks Based Syntax For Product Info Requests And More
- Example: PassKit Web Service Example Built With Ruby On Rails
- Ruby Rack Mountable Solution For Sending iOS Push Notifications
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.




