Swift In-App Purchase Manager for iOS
Easy-to-use a singleton class that supports non-renewable in-app purchases.
It's super cool because
- it's written in Swift
- it uses blocks!
If you want to make a purchase, all you need to do is to call a method:
IAPManager.sharedManager.purchaseProductWithId(productId) { (error) -> Void in
if error == nil {
// successful purchase!
} else {
// something wrong..
}
}
You can call purchaseProductWithId without first loading products info because inside purchaseProductWithId it'll load it if needed. So just call purchaseProductWithId whenever you want to make a purchase.
But if you need to get all products info, you can load it by calling:
IAPManager.sharedManager.loadProductsWithIds(productIds) { (error) -> Void in }
To restore transactions call:
IAPManager.sharedManager.restoreCompletedTransactions { (error) -> Void in }
If you want to add validation, keychain support or some other features, feel free to send me pull requests!