Передайте coredata в ViewController на основе выбора ячейки - PullRequest
0 голосов
/ 11 февраля 2019

Мне нужно представить новый ViewController при выборе ячейки UICollectionView и передать данные от объекта, используемого для заполнения выбранной ячейки.

Вот код, используемый для заполнения данных ячейки:

   let pets = PersistenceManager.shared.fetch(Pet.self)
     var _fetchResultsController: NSFetchedResultsController <Pet>?
    var fetchResultsController: NSFetchedResultsController <Pet>?{
        get{
            if _fetchResultsController == nil {

                let moc = PersistenceManager.shared.context
                moc.performAndWait {
                    let fetchRequest = PersistenceManager.shared.petsFetchRequest()
                    _fetchResultsController = NSFetchedResultsController.init(fetchRequest: fetchRequest, managedObjectContext: moc, sectionNameKeyPath: nil, cacheName: nil) as? NSFetchedResultsController<Pet>
                    _fetchResultsController?.delegate = self
                    do {
                        try self._fetchResultsController?.performFetch()
                    }catch {
                    }
                }
            }
            return _fetchResultsController
        }
    }

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

        if let pet= self.fetchResultsController?.fetchedObjects, indexPath.row < pet.count{
            let _pet= fetchResultsController!.object(at: indexPath)
// cell UI goes here
        }
        return cell
    }

Я понимаю, что мне нужно использовать didSelectItemAt, я просто не знаю, какую информацию нужно использовать в функции.Пожалуйста, дайте мне знать, что еще нужно, чтобы лучше помочь ответить на этот вопрос.Спасибо.

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {

// Added the line below based on karthik's answer. But I am unsure how to implement it.
    let selectedObj = fetchResultsController!.object(at: indexPath)

    let vc = self.storyboard?.instantiateViewController(withIdentifier: "selectedPetViewController") as! PRSelectedPetViewController

    navigationController?.pushViewController(vc, animated: true)

}

Ответы [ 2 ]

0 голосов
/ 02 марта 2019

Я предпочитаю следующую архитектуру:

Это основной контроллер с данными.Для лучшего понимания я упросту источник данных.

class ViewController: UIViewController {
    // code ...

    @IBOutlet var collectionView: UICollectionView!
    fileprivate var data = [Pet]()
}

extension ViewController: UICollectionViewDataSource {
    // code ...

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

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "HorCell", for: indexPath) as? PRMainHorizontalCollectionViewCell else {
            return UICollectionViewCell()
        }

        let pet = data[indexPath.row]
        // TODO: configure cell using pet ...
        return cell
    }

}

extension ViewController: UICollectionViewDelegate {

    func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
        let row = indexPath.row
        let pet = data[row]

        // TODO: Get the child controller in any way convenient for you.
        let childController = ChildViewController()
        // With the help of the delegate, we will receive notification of changes pet.
        childController.delegate = self

        // Thus, we pass the data to the child controller.
        childController.pet = pet
        childController.indexPath = indexPath

        // TODO: Present the view controller in any way convinient for you.
    }

}

extension ViewController: ChildViewControllerDelegate {

    func saveButtonPressed(_ controller: ChildViewController) {
        guard let pet = controller.pet, let indexPath = controller.indexPath else {
            return
        }

        // We save data and reload the cell whose data we changed.
        self.data[indexPath.row] = pet
        collectionView.reloadItems(at: [indexPath])
    }

    func cancelButtonPressed(_ controller: ChildViewController) {
        // Do something if necessary...
    }

}

В дополнение к контроллеру дочерний контроллер также предоставляет протокол делегата для уведомления об изменениях.

protocol ChildViewControllerDelegate {

    func saveButtonPressed(_ controller: ChildViewController)

    func cancelButtonPressed(_ controller: ChildViewController)

}

// This is the controller you want to show after selecting a cell.
// I assume that in the child controller there is a button to save and cancel.
class ChildViewController: UIViewController {

    var delegate: ChildViewControllerDelegate?

    // The object whose data we are editing in the controller.
    var pet: Pet!

    // The location of the object in the main controller.
    var indexPath: IndexPath!

    override func viewDidLoad() {
        // TODO: Configure user interface using self.pet
    }

    @IBAction func saveButtonPressed(_ button: UIButton) {
        delegate?.saveButtonPressed(self)
    }

    @IBAction func cancelButtonPressed(_ button: UIButton) {
        delegate?.cancelButtonPressed(self)
    }

}
0 голосов
/ 11 февраля 2019

вы можете следовать за этим, чтобы передать информацию другому контроллеру представления.

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {

        let selectedObj = fetchResultsController!.object(at: indexPath)
        // instantiate presenting view controller object
        // add one property (manange object) in your presenting viewcontroller
        // assign the selected object to that property
        // present the view controller
    }
...