gpt4 book ai didi

swift - 表格 View : get value of textField in HeaderCell

转载 作者:行者123 更新时间:2023-11-30 14:00:31 26 4
gpt4 key购买 nike

如何获取 UITableView 的 header Cell 的值?通过以下代码,我获取了部分内单元格的值。但我该如何更改它才能与标题单元格一起使用?

      let indexPath = NSIndexPath(forRow: row, inSection: h)
tableView.scrollToRowAtIndexPath(indexPath, atScrollPosition: UITableViewScrollPosition.Top, animated: false)

let currentCell = tableView.dequeueReusableCellWithIdentifier("TeamInput", forIndexPath: indexPath) as! TeamInputTableViewCell

最佳答案

如果你想访问UITableView中的headerView,你可以这样做:

let headerView = tableView.headerViewForSection(indexPath.section)

顺便说一句,如果您想访问 TableView 中的现有单元格,则不应使用dequeueReusableHeaderFooterViewWithIdentifier,因为该方法从队列中返回一个新单元格,而不是当前显示的单元格。要访问显示的单元格之一,您应该使用:

let cell = tableView.cellForRowAtIndexPath(indexPath)

关于swift - 表格 View : get value of textField in HeaderCell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33056018/

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