在iOS 9.3 / Xcode 7.3中使用StoreKit常量时使用未解析的标识符

前端之家收集整理的这篇文章主要介绍了在iOS 9.3 / Xcode 7.3中使用StoreKit常量时使用未解析的标识符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
尝试使用其中一个StoreKit常量时,我​​收到错误“使用未解析的标识符”:
SKErrorClientInvalid
SKErrorPaymentCancelled
SKErrorPaymentInvalid
SKErrorPaymentNotAllowed
SKErrorStoreProductNotAvailable
SKErrorUnknown

您的代码可能如下所示:

if transaction.error!.code == SKErrorPaymentCancelled {
    print("Transaction Cancelled: \(transaction.error!.localizedDescription)")
}

改变了什么?我需要导入一个新模块吗?

解决方法

从iOS 9.3开始,某些StoreKit常量已从SDK中删除.有关更改的完整列表,请参见 StoreKit Changes for Swift.

这些常量已被替换为SKErrorCode枚举和相关值:

SKErrorCode.ClientInvalid
SKErrorCode.CloudServiceNetworkConnectionFailed
SKErrorCode.CloudServicePermissionDenied
SKErrorCode.PaymentCancelled
SKErrorCode.PaymentInvalid
SKErrorCode.PaymentNotAllowed
SKErrorCode.StoreProductNotAvailable
SKErrorCode.Unknown

您应该检查使用枚举的rawValue检查您的transaction.error.code.例:

private func FailedTransaction(transaction: SKPaymentTransaction) {
    print("FailedTransaction...")
    if transaction.error?.code == SKErrorCode.PaymentCancelled.rawValue {
        print("Transaction Cancelled: \(transaction.error?.localizedDescription)")
    }
    else {
        print("Transaction Error: \(transaction.error?.localizedDescription)")
    }
    SKPaymentQueue.defaultQueue().finishTransaction(transaction)
}

如果在iOS 9.3及更高版本上使用StoreKit创建新应用程序,则应检查这些错误代码而不是旧常量.

原文链接:https://www.f2er.com/iOS/335391.html

猜你在找的iOS相关文章