gpt4 book ai didi

ios - 在多个收藏 View 中显示电影列表的详细 View

转载 作者:行者123 更新时间:2023-11-28 14:47:46 24 4
gpt4 key购买 nike

我在同一个 ViewController 中有多个 UICollectionView(准确地说是 4 个)。我为每个由标题和 UICollectionView 组成的“行”创建了一个容器 View 。我从每个 UICollectionViewCell 到细节 View Controller 做了一个 Segue,并给了它们一个标识符。但是我不明白如何将我的 Movie 对象从 containerview 获取到详细信息页面。

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if (segue.identifier == "MovieDetailsPlaying"){
var destination = segue.destination as! DetailMovieController
destination.item = containerNowPlayingView.movies[IndexPath]
}
}

我认为我需要解决这个问题的全部是弄清楚如何在 ViewController 中的 Segue 的准备函数中获取 IndexPath。我希望你能帮助我。

我已经找到了这样的答案: Answer one

My Segue's

2 of the 4 horizontal UICollectionViews

最佳答案

考虑到您没有在 cellForItemAt indexPath 中显示您使用的是什么类型的单元格,我不得不做一些事情,这样您就可以清楚了。我也不知道你有 4 个 Collection View 是什么意思,但这是使用 1 个 collectionView 通过 prepareForSegue 将数据从 collectionViewCell 传输到目标 View Controller 的方法之一。

preparForSegue 中,您需要三样东西:

1- 您需要知道您在 cellForItemAt indexPath 中使用的单元格类型。对于这个例子,我使用了一个名为 MovieCell

的单元类

2- 您需要获取所选行的 indexPath。 CollectionView 有一个名为 indexPath(for:) 的方法,它接受一个 collectionViewCell 作为参数:collectionView.indexPath(for: UICollectionViewCell)

3- 从与所选行对应的数组中获取信息。

举个例子,你有一个名为 MovieDataModel 的类,它有一个 movieName 属性:

class MovieDataModel{
var movieName: String?
}

collectionView 单元格名为 MovieCell,其中有一个 movieTitleLabel socket :

class DetailedSearchComplaintCollectionCell: UICollectionViewCell {
@IBOutlet weak var movieTitleLabel: UILabel!
}

在你的 CollectionView 类中:

@IBOutlet weak var collectionView: UICollectionView! // in this example there is only 1 collectionView
let movies = [MovieDataModel]() // an array of MovieDataModels

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return movies.count // return the number of items inside the movies array
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "movieCell", for: indexPath) as! MovieCell // cast the cell as a MovieCell
cell.movieTitleLabel.text = movies[indexPath.row].movieName! // this is the same info we need for the 3rd step

return cell
}

// sender parameter <<<
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {

if (segue.identifier == "MovieDetailsPlaying"){

// From the steps above
let cell = sender as! MovieCell // 1- the same exact type of cell used in cellForItemAt indexPath. Access it using the sender parameter in the prepareFoeSegue signature and then cast it as a MovieCell
let indexPath = collectionView.indexPath(for: cell) // 2- get the indexPath from the row that was tapped. Add the cell from step 1 as an argument to it. Notice it says collectionView because that's the name of the collectionView outlet. I'm not sure how this would work with 4 different collectionViews but you probably will have to make an indexPath for each one. Just an assumption

var destination = segue.destination as! DetailMovieController
destination.item = movies[indexPath!.row].movieName // 3- what MoviesDataModel item from inside the movies array and the title from it corresponds to the indexPath (the tapped row).
}
}

我不知道您使用的 collectionView 单元格的名称,但在带有 collectionView 的类中,只要您看到名称 MovieCell,只需将其更改为您使用的单元格名称即可。

关于ios - 在多个收藏 View 中显示电影列表的详细 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50106590/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com