项目作者: Vitaa

项目描述 :
Swift In-App Purchase Manager for iOS
高级语言: Swift
项目地址: git://github.com/Vitaa/IAPurchaseManager.git
创建时间: 2015-04-24T13:00:45Z
项目社区:https://github.com/Vitaa/IAPurchaseManager

开源协议:MIT License

下载


IAPurchaseManager

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

1) it’s written in Swift

2) it uses blocks!

Making a purchase

If you want to make a purchase, all you need to do is to call a method:

  1. IAPManager.shared.purchaseProduct(productId: productId) { (error) -> Void in
  2. if error == nil {
  3. // successful purchase!
  4. } else {
  5. // something wrong..
  6. }
  7. }

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:

  1. IAPManager.shared.loadProducts(productIds: []) { (products, error) in }

Check product was purchased

To check if a product was purchased, call (it returns Bool):

  1. IAPManager.shared.isProductPurchased(productId)

Restore transactions

To restore transactions call:

  1. IAPManager.shared.restoreCompletedTransactions { (error) in }

Details


All completed transactions are saved to a file:

  1. data.write(to: purchasedItemsURL(), options: [.atomicWrite, .completeFileProtection])

Setup


Just drag IAPManager.swift to your project.

or using CocoaPods

  1. pod 'IAPurchaseManager'

If you are using Swift 2.x, then

  1. pod 'IAPurchaseManager', '~> 0.0.2'

Carthage compatible

  1. github "Vitaa/IAPurchaseManager"





If you want to add validation, keychain support or some other features, feel free to send me pull requests!