美文网首页
UITableView 无法滚动到底部

UITableView 无法滚动到底部

作者: gaookey | 来源:发表于2020-08-12 19:16 被阅读0次
        let group = DispatchGroup()
        let queue = DispatchQueue.global()
        group.enter()
        queue.async {
            DispatchQueue.main.async {
                self.textList.reloadData()
                group.leave()
            }
        }
        group.notify(queue: queue) {
            DispatchQueue.main.async {
                self.textList.scrollToRow(at: IndexPath(row: self.dataSource.count - 1, section: 0), at: .bottom, animated: false)
            }
        }

相关文章

网友评论

      本文标题:UITableView 无法滚动到底部

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