1

我正在使用SwiftyStoreKit在我的项目中实现 iAP。我有一个用户可以购买和恢复的自动更新订阅。这似乎工作正常,但是在检索要显示到 UI 的产品信息时遇到问题。

我正在尝试显示本地化价格,返回的价格是年度成本,因此我需要将该数字除以 12 以将其显示为每月成本。但是,当获取价格并尝试恢复价值时,我收到以下错误:

void 函数中出现意外的非 void 返回值

设置按钮值

let subscribeButton = subscriptionManager.getSubscriptionPricePerMonth(isYearly: false)
subscribeButton(monthlyCost, for: .normal)

检索价格

//Get prices

func getSubscriptionPricePerMonth() -> String {
    let productId = getProductId()


    NetworkActivityIndicatorManager.networkOperationStarted()
    SwiftyStoreKit.retrieveProductsInfo([productId]) { result in
        NetworkActivityIndicatorManager.networkOperationFinished()

        if let product = result.retrievedProducts.first {

            let priceString = product.localizedPrice!
            return priceString
        } else if let invalidProductId = result.invalidProductIDs.first {
              //return ("Could not retrieve product info", message: "Invalid product identifier: \(invalidProductId)")
            print("Could not retrieve product info\(invalidProductId)")
        } else {
            let errorString = result.error?.localizedDescription ?? "Unknown error. Please contact support"
            //return ("Could not retrieve product info, \(errorString)")
            print("\(errorString)")

        }
    }

}
4

1 回答 1

2

void 函数中出现意外的非 void 返回值

错误说,您正试图从 void 函数返回一些值。

现在,让我们了解您的情况。

你的实际功能是

func getSubscriptionPricePerMonth() -> String {}

您希望将一些值作为字符串返回给您。但是看看里面的代码,你使用的是异步块,它有 void 返回类型

SwiftyStoreKit.retrieveProductsInfo([productId]) { result -> Void in 
  // Here you are returning some values after parsing the data, which is not allowed.
}

要从块中返回某些内容,您可以使用DispatchGroup使其同步

希望这可以帮助。

于 2018-10-23T12:21:56.610 回答