暂无描述

Andrea Bizzotto 530dd93516 Updated podspec to 0.1.6 9 年之前
Screenshots 4fc8fc9b1c Renamed screenshot 10 年之前
SwiftStoreOSXDemo 09a94b3f0c Updated demo view controllers to handle new PurchaseResultType error types. 9 年之前
SwiftyStoreDemo 09a94b3f0c Updated demo view controllers to handle new PurchaseResultType error types. 9 年之前
SwiftyStoreKit 670d360439 Added PaymentNotAllowed error type when attempting to purchase and payments are not allowed 9 年之前
SwiftyStoreKit.xcodeproj d3b7b673d1 Make framework compatible with OSX 9 年之前
SwiftyStoreKitOSX d3b7b673d1 Make framework compatible with OSX 9 年之前
.gitignore a062fc7418 Added .gitignore 10 年之前
LICENSE.md 12f82c5ebe Adding license and valid podspec 10 年之前
README.md b6ac51bdb0 Updated README with OSX support, credits 9 年之前
SwiftyStoreKit.podspec 530dd93516 Updated podspec to 0.1.6 9 年之前

README.md

SwiftyStoreKit

SwiftyStoreKit is a lightweight In App Purchases framework for iOS 8.0+ and OSX 9.0+, written in Swift 2.0.

Preview

Retrieve product info

SwiftyStoreKit.retrieveProductInfo("com.musevisions.SwiftyStoreKit.Purchase1") { result in
    switch result {
    case .Success(let product):
        let priceString = NSNumberFormatter.localizedStringFromNumber(product.price, numberStyle: .CurrencyStyle)
        print("Product: \(product.localizedDescription), price: \(priceString)")
        break
    case .Error(let error):
        print("Error: \(error)")
        break
    }
}

Purchase a product

SwiftyStoreKit.purchaseProduct("com.musevisions.SwiftyStoreKit.Purchase1") { result in
    switch result {
    case .Success(let productId):
        print("Purchase Success: \(productId)")
        break
    case .Error(let error):
        print("Purchase Failed: \(error)")
        break
    }
}

Restore previous purchases

SwiftyStoreKit.restorePurchases() { result in
    switch result {
    case .Success(let productId):
        print("Restore Success: \(productId)")
        break
    case .NothingToRestore:
        print("Nothing to Restore")
        break
    case .Error(let error):
        print("Restore Failed: \(error)")
        break
    }
}

NOTE: The framework provides a simple block based API with robust error handling on top of the existing StoreKit framework. It does NOT persist in app purchases data locally. It is up to clients to do this with a storage solution of choice (i.e. NSUserDefaults, CoreData, Keychain).

Installation

SwiftyStoreKit can be installed as a Cocoapod and builds as a Swift framework. To install, include this in your Podfile.

use_frameworks!

pod 'SwiftyStoreKit'

Once installed, just import SwiftyStoreKit in your classes and you're good to go.

Sample Code

The project includes demo apps for iOS and OSX showing how to use SwiftyStoreKit. Note that the pre-registered in app purchases in the demo apps are for illustration purposes only and may not work as iTunes Connect may invalidate them.

Features

  • Super easy to use block based API
  • enum-based error handling
  • Support for non-consumable in app purchases

Planned Features

  • Receipt verification

Missing Features

  • Ask To Buy

Untested Features

  • Consumable in app purchases
  • Free subscriptions for Newsstand

Implementation Details

In order to make a purchase, two operations are needed:

  • Obtain the SKProduct corresponding to the productId that identifies the app purchase, via SKProductRequest.

  • Submit the payment for that product via SKPaymentQueue.

The framework takes care of caching SKProducts so that future requests for the same SKProduct don't need to perform a new SKProductRequest.

Requesting a product

SwiftyStoreKit wraps the delegate-based SKProductRequest API with a block based class named InAppProductQueryRequest, which returns either a success case with a list of valid products, or an error comprising the following cases:

public enum ResponseError : ErrorType {
    case InvalidProducts(invalidProductIdentifiers: [String])
    case NoProducts
    case RequestFailed(error: NSError)
}

If InAppProductQueryRequest returns an error, this is surfaced directly to the completion block of SwiftyStoreKit.purchaseProduct, so that the client can examine it and react accordingly. In case of success, the product is cached and the purchase can take place via the InAppProductPurchaseRequest class.

Purchasing a product / Restoring purchases


The class conforms to the ```SKPaymentTransactionObserver``` protocol in order to receive transactions notifications from the payment queue. The following outcomes are defined for a purchase/restore action:

swift enum TransactionResult {

case Purchased(productId: String)
case Restored(productId: String)
case NothingToRestore
case Failed(error: NSError)

} ```

The SwiftyStoreKit class can then map the returned TransactionResult into either a success or failure case and pass this back to the client. Note that along with the success and failure case, the result of a restore purchases operation also has a NothingToRestore case. This is so that the client can know that the operation returned, but no purchases were restored.

Credits

Many thanks to phimage for adding OSX support and receipt verification.

License

Copyright (c) 2015 Andrea Bizzotto bizz84@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.