作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在下面的 FinalArray 数组中插入了一些对象。现在我想将它们显示在 tableList 中,以便我需要找到每个位置对象。我该如何写该声明,有人可以帮助我吗?
var forcast:Forecast?
var finalArray = [Forecast]()
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
forcast = finalArray.index(indexpath);
}
最佳答案
NSIndexPath有部分和行
您需要根据 indexPath.section
或 indexPath.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/
我是一名优秀的程序员,十分优秀!