Skip to content

raostudios/RSMoneyMaker

Repository files navigation

RSMoneyMaker

CI Status Version License Platform

Features

Components

RSMoneyMaker-Core - RSMoneyMaker-UI -

Requirements

This project has only been tested on iOS.

Installation

RSMoneyMaker is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "RSMoneyMaker"

Usage

Initialize

IAPProduct *weatherProduct = [IAPProduct new];
weatherProduct.iapIdentifier = WeatherProductIdentifier;
weatherProduct.defaults = @{ @"weather_location_type": @"currentLocation",
                             @"show_weather": @YES };
                             
[IAPManager initializeStoreWithProducts:@[weatherProduct] withSharedSecret:@"..."];

Make Purchase

IAPManager *manager = [IAPManager sharedManager];
[manager purchaseProduct:[IAPProducts productForIdentifier:self.productIdentifier].storeKitProduct withCompletion:^(NSError *error) {
 ...
}];

UI Components

Author

Venkat S. Rao, venkat@raostudios.com

License

RSStoreKit is available under the MIT license. See the LICENSE file for more info.