gpt4 book ai didi

swift - 如何在 swift 3 中从数组中查找特定位置对象

转载 作者:行者123 更新时间:2023-11-30 12:18:52 24 4
gpt4 key购买 nike

我在下面的 FinalArray 数组中插入了一些对象。现在我想将它们显示在 tableList 中,以便我需要找到每个位置对象。我该如何写该声明,有人可以帮助我吗?

我的代码:-

 var forcast:Forecast?
var finalArray = [Forecast]()

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
forcast = finalArray.index(indexpath);
}

最佳答案

NSIndexPath有部分和行

您需要根据 indexPath.sectionindexPath.row 进行访问,具体取决于您如何使用 tableView datasource 对 tableView 上的数据进行分类。

例如:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell  {
forcast = finalArray.index(indexpath.row);//
}

关于swift - 如何在 swift 3 中从数组中查找特定位置对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45050568/

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