美文网首页
获取tableView上的某个UITableViewCell数据

获取tableView上的某个UITableViewCell数据

作者: 鹏飞说 | 来源:发表于2021-01-29 16:25 被阅读0次

swift获取tableView上的UITableViewCell数据

DispatchQueue.main.async(execute: {
    guard let cells = self?.tableView?.visibleCells else { return }
    guard let dateArray = self?.dateArray else { return }
    for cell in cells {
        guard let cell = cell as? TimeDownTestCell else { return }
    }
 })

相关文章

网友评论

      本文标题:获取tableView上的某个UITableViewCell数据

      本文链接:https://www.haomeiwen.com/subject/pcaqtltx.html