簡體   English   中英

如何使用TableView“選擇行在”方法更新CollectionView

[英]How to update CollectionView with TableView “Did Select Row At” method

我有一個ViewController包含一個collectionview和一個tableview。 我希望能夠在tableView中按一行,並用新圖像更新collectionView。 我不確定在這種情況下如何引用collectionView。

我假設我必須在tableView的“ DidSelectRowAt”方法中放入一些代碼,然后使用字典傳遞數據。 有人知道嗎 謝謝!

的viewController

您是否嘗試過從tableView的didSelectRowAtIndexPath觸發collectionView.reloadData()

override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    collectionView.reloadData()
  }

嘗試此方法,並將最新字典傳遞給collectionView字典

 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    yourCollectionViewDict = arrDict[indexPath.row]
    collectionView.reloadData()
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM