簡體   English   中英

如何從不同的ViewController執行collectionView類

[英]how to execute collectionView class from different ViewController

我有一個collectionView

class LC: UIViewController,UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout{

//in LC

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if let VC = segue.destination as? VC2 {
        VC.Rpe = Pass
    }
}

它工作正常 ,在VC2中,我有一個函數在執行時應該選擇collection view的下一個單元格

我不確定如何或最好的方法是什么(用下一個collection view cell詳細信息reload VC2 ?或以編程方式運行collection view功能)

更新

import Foundation
import UIKit

class View2: UIViewController {

@IBOutlet var Q_Pic: UIImageView!
@IBOutlet var Q_que: UILabel!
var SelectedCell: Ques!

override func viewDidLoad() {
    super.viewDidLoad()

    Q_Pic.image = UIImage(named: SelectedCell.LIMG)
    Q_que.text = SelectedCell.Q
}

@IBAction func herewego(_ sender: Any) {
    print("when the user press this button it should take him directly to the next cell detail , i don't want the user to go back to collection view and choose the next cell")
}
}

數據

let Q_A_TEST_MOH = [
Ques(Q: "Q1? ",LIMG: "1"),
Ques(Q: "Q2? ",LIMG: "2"),
Ques(Q: "Q3?",LIMG: "3"),
Ques(Q: "Q4?",LIMG: "4"),
Ques(Q: "Q5?",LIMG: "5")
]

struct Ques {
var Q : String
var LIMG: String
}

UICollectionViewController

import Foundation
import UIKit

class test:UIViewController,UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout {

@IBOutlet var CollectionView: UICollectionView!
var Levelssss: [Ques]!
var ToPass: Ques!
var SelectedCategory: String!
var Level: Int!
override func viewDidLoad() {
    super.viewDidLoad()
    CollectionView.delegate = self
    CollectionView.dataSource = self
}

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

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    if let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "LevelCell2", for: indexPath) as? cell1 {
        let r = Q_A_TEST_MOH[indexPath.item]
        cell.congigureCell(EditLater: r)
        return cell
    }
    return UICollectionViewCell()
}

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
    ToPass = Q_A_TEST_MOH[indexPath.item]
    performSegue(withIdentifier: "To", sender: self)
}

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if let detalsVC = segue.destination as? View2 {
        detalsVC.SelectedCell = ToPass
    }
}
}

UICollectionViewCell

import UIKit

class cell1: UICollectionViewCell {

@IBOutlet var BB: UIButton!

override func awakeFromNib() {
    super.awakeFromNib()
    BB.layer.cornerRadius = 10
}

func congigureCell(EditLater: Ques){
    BB.setImage(UIImage(named: EditLater.LIMG), for: .normal)
}
}

從此處下載項目: 下載項目

這是固定的變體: https : //www.dropbox.com/s/bc7ktktrbqg9x7t/test%202.zip?dl=0

邏輯很簡單:傳遞整個數據數組和所選對象的索引。

VC2上單擊按鈕,您只需增加索引並更新視圖的內容。

現在,您應該檢查索引是否大於數組中元素的數量。

暫無
暫無

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

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