How to display dynamically data from Server in CollectionViewCell in TableViewCell with swift3?

后端 未结 1 421
伪装坚强ぢ
伪装坚强ぢ 2020-12-20 06:54

I got my json link data from TableViewCell , and then retrieve that data from server and display in collectionView with related TableViewCell data. How to display this data

相关标签:
1条回答
  • 2020-12-20 07:26

    in HomeVideoCell Subclass clean up data in prepareforreuse

    override func prepareForReuse() {
        super.prepareForReuse()
        self.movieTitle.text = ""
        self.imageView.image = nil
    }
    
    0 讨论(0)
提交回复
热议问题