Как переходить с разных ячеек представления коллекции на разные контроллеры представления - PullRequest
0 голосов
/ 19 октября 2019

Начинающий здесь. Я разрабатываю простое приложение светильников. Я настроил представление коллекции, я пытаюсь сделать так, чтобы, когда я щелкаю ячейку в представлении коллекции, она переходит к соответствующему контроллеру представления. Каждая ячейка должна перейти к другому контроллеру представления. Вот код, который я пробовал до сих пор:

import UIKit

class FixturesViewController: UIViewController, UICollectionViewDataSource,       UICollectionViewDelegate, UICollectionViewDelegateFlowLayout {


let fixturesName = ["EUMHC 1's XI", "EUMHC 2's XI", "EUMHC 3's XI", "EUMHC 4's XI", "EUMHC 5's XI", "EUMHC 6's XI", "EUMHC 7's XI"]

let fixturesLeague = ["Competing in Men's Premiership & Premier North (BUCS)", "Competing in Men's Regional Division 1 & Scottish 1 (BUCS)", "Competing in Men's Regional Division 2 & Scottish 2 (BUCS)", "Competing in Men's East District Division 1 & Scottish 3 (BUCS)", "Competing in Men's East District Division 2 & Scottish 3 (BUCS)", "Competing in Men's East District Division 2 & Scottish 4 (BUCS)", "Competing in Men's East District Division 4"]


override func viewDidLoad() {
    super.viewDidLoad()

    // Do any additional setup after loading the view.
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
       return fixturesName.count
   }



func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell2", for: indexPath) as! FixturesCollectionViewCell

    func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath){
    }

    cell.fixturesName.text = fixturesName[indexPath.row]
    cell.fixturesLeague.text = fixturesLeague[indexPath.row]


    cell.contentView.layer.cornerRadius = 10.0
    cell.layer.cornerRadius = 10.0
    cell.contentView.layer.borderWidth = 1.0
    cell.contentView.layer.borderColor = UIColor.clear.cgColor
    cell.contentView.layer.masksToBounds = true
    cell.layer.shadowColor = UIColor.gray.cgColor
    cell.layer.shadowOffset = CGSize(width: 0, height: 1.0)
    cell.layer.shadowRadius = 4.0
    cell.layer.masksToBounds = false
    cell.layer.shadowOpacity = 1.0

    return cell


}

private func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath){

switch (indexPath.row)   {
    case 0:
        self.performSegue(withIdentifier: "fixtures1", sender: self)
    case 1:
        self.performSegue(withIdentifier: "fixtures2", sender: self)
  default:
     break
   }
}
}

Я пытался использовать оператор switch внизу (этот метод был где-то в другом месте) для выполнения переходов с идентификаторами в зависимости от индекса ячейки.

Это правильный подход к нему?

1 Ответ

0 голосов
/ 19 октября 2019

Если у вас много сегментов, то лучше построить таким образом

self.performSegue(withIdentifier: "fixtures\(indexPath.item + 1)", sender: self)

, где сегменты начинаются с fixtures1 до fixturesN

...