gpt4 book ai didi

Swift 混淆了这段代码在做什么

转载 作者:行者123 更新时间:2023-11-28 16:07:49 27 4
gpt4 key购买 nike

目前正在处理我的第一个 swift 项目并且对以下代码感到困惑,我将逐行对其进行注释以显示我的理解,但总的来说我感到有点困惑。

所以它使用通知来触发,基于来自 IAP 帮助程序类的值。

NotificationCenter.default.addObserver(self, selector: #selector(MasterViewController.handlePurchaseNotification(_:)),
name: NSNotification.Name(rawValue: IAPHelper.IAPHelperPurchaseNotification),object: nil

所以这就是上面nsnotification中提到的方法。现在我的第一个问题是,这是在收到 ns 通知时自动调用的吗?第二行我认为将产品ID定义为一个不可更改的变量,并将其设置为某种类型。即在这种情况下它必须是一个字符串。我感到困惑的 2 行,本来以为它是一个 for 循环,但看不到它在迭代,所以不确定这是在做什么。我假设最后一行在符合检查条件时是一个 Action 。

func handlePurchaseNotification(_ notification: Notification) {
guard let productID = notification.object as? String else { return }

for (index, product) in products.enumerated() {
guard product.productIdentifier == productID else { continue }

tableView.reloadRows(at: [IndexPath(row: index, section: 0)], with: .fade)
}

感谢大家的帮助,感谢任何解释!

最佳答案

is this automatically called when the ns notification is received?

是的,这就是 addObserver(_:selector:name:object:) 的重点

我已经注释了代码:

func handlePurchaseNotification(_ notification: Notification) {
// convert notification.object to string if you can, and call it productID. Otherwise return
guard let productID = notification.object as? String else { return }

// products.enumerated() would yield something like
// [(0, productA), (1, productB), (2, productC)]
// This array is iterated, with the index and product being set to the values from each tuple in turn

for (index, product) in products.enumerated() {
// check if the current product's productIdentifier is == to productID, otherwise keep searching
guard product.productIdentifier == productID else { continue }

// if we get to here, it's implied the productIdentifier == productID

// reload the row with the corresponding index
tableView.reloadRows(at: [IndexPath(row: index, section: 0)], with: .fade)
}

最后一行有点傻。 reloadRows(at:with:) 需要 Array<IndexPath>作为论据。在此代码中,每次迭代都会创建一个新数组,其中仅包含从该迭代生成的单个元素。生成一个包含所有 IndexPath 的数组会更有效率。实例,然后调用 reloadRows(at:with:) 最后一次。

这是我对这种方法的看法,我认为这种方法更容易遵循:

func handlePurchaseNotification(_ notification: Notification) {
guard let desiredID = notification.object as? String else { return }

let staleRows = products.enumerated() // convert an array of products into an array tuples of indices and products
.filter{ _, product in product.ID == desiredID } // filter to keep only products with the desired ID
.map{ index, _ in IndexPath(row: index, section: 0) } // create an array of IndexPath instances from the indexes

tableView.reloadRows(at: staleRows, with: .fade)
}

关于Swift 混淆了这段代码在做什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39992123/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com