保留嵌套 collectionView 的滚动位置

Zhe*_*i.C 3 uitableview collectionview ios swift

之后,tableView.reloadData()可见collectionView显示的第一行意外马上。

我在其单元格中构建了一个tableView包含collectionView,用户可以tableView像 Instagram 一样在每一个中滚动多个图像。我该如何解决?谢谢!

表视图数据源

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return photoRolls.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "tableViewCell", for: indexPath) as! HomeTableViewCell
    if photoRolls.isEmpty {
        return UITableViewCell()
    }        
    let user: UserModel = users[indexPath.row]
    let photoRoll: PhotoRoll = photoRolls[indexPath.row] //this Model contains post info: likes, comments etc.
    let photoUrls: UrlStrings = urls[indexPath.row] //this Model contains a array of urlStrings for each collectionView inside the tableViewCell
    cell.urlStrings = photoUrls
    cell.photoRoll = photoRoll
    cell.user = user

    cell.delegate = self

    return cell
}
Run Code Online (Sandbox Code Playgroud)

tableViewCell 中的 prepareForReuse 方法

override func prepareForReuse() {
    super.prepareForReuse()
    captionLabel.text = nil
    profileImage.image = UIImage(named: "placeholderImg")
    profileImageRight.image = UIImage(named: "placeholderImg")
    collectionView.scrollToItem(at:IndexPath(item: 0, section: 0), at: .left, animated: false)//tried to remove this method, but the collectionView  would not display the first row when it's visible
}
Run Code Online (Sandbox Code Playgroud)

tableViewCell 内 collectionView 的数据源

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return cellUrlArray.count
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "HomeCollectionViewCell", for: indexPath) as! HomeCollectionViewCell
    cell.url = cellUrlArray[indexPath.row]
    return cell
}
Run Code Online (Sandbox Code Playgroud)

就像问题标题所说的那样。我希望在调用collectionViewtableView加载更多数据后可见的保留在当前行上tableView.reloadData()!再次感谢!

SPa*_*tel 6

我认为contentOffset缓存是可能的,如下所示

var cachedPosition = Dictionary<IndexPath,CGPoint>()

func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
    if let cell = cell as? HomeTableViewCell {
        cachedPosition[indexPath] = cell.collectionView.contentOffset
    }
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    <<Your Code>>

    cell.collectionView.contentOffset = cachedPosition[indexPath] ?? .zero        
    return cell
}
Run Code Online (Sandbox Code Playgroud)