Как получить доступ к альбому фотографий для каждой строки в UITableView - PullRequest
1 голос
/ 08 мая 2019

У меня есть UITableView с несколькими строками.Когда я держу камеру, всплывающая камера и я могу делать фотографии и сохранять их в альбоме фотографий.Каждый ряд может иметь альбом фотографий.Проблема в том, что когда я нажимаю на альбом, каждый раз, когда я открываю альбом с последним сделанным снимком, я не знаю, как решить эту проблему с indexPath.Вот мой код:

class CustomImg: UIImageView {
    var indexPath: IndexPath?
}


class ChecklistVC: UIViewController {

    lazy var itemSections: [ChecklistItemSection] = {
        return ChecklistItemSection.checklistItemSections()
    }()
    var lastIndexPath: IndexPath!
    var currentIndexPath: IndexPath! 

    ...
    ...

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let cell = tableView.dequeueReusableCell(withIdentifier: Constants.checklistCell, for: indexPath) as! ChecklistCell

        let itemCategory = itemSections[indexPath.section]
        let item = itemCategory.checklistItems[indexPath.row]


        if item.imagesPath!.isEmpty{
            cell.defectImageHeightConstraint.constant = 0
        }
        else{
            let thumbnailImage = loadImageFromDiskWith(fileName: item.imagesPath?.last ?? String())
            cell.defectImageView.indexPath = indexPath
            cell.defectImageView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(tapOnDefectImageView(_:))))
            cell.defectImageHeightConstraint.constant = 100
            cell.defectImageView.isUserInteractionEnabled = true
            cell.defectImageView.image = thumbnailImage

            print("For section \(indexPath.section + 1) - row \(String(describing: indexPath.row + 1)) the album photos are: \(String(describing: item.imagesPath))")
        }
        return cell


    }

    @objc func tapOnDefectImageView(_ sender: UITapGestureRecognizer){

        guard let img = sender.view as? CustomImg, let indexPath = img.indexPath else { return }

        currentIndexPath = indexPath

        let listImagesDefectVC = storyboard?.instantiateViewController(withIdentifier: "ListImagesDefectID") as! ListImagesDefectVC
        let item = itemSections[indexPath.section].checklistItems[indexPath.row]

        listImagesDefectVC.listImagesPath = item.imagesPath
        listImagesDefectVC.isPhotoAccessedFromChecklist = true
        listImagesDefectVC.delegate = self
        navigationController?.pushViewController(listImagesDefectVC, animated: true)
    }


    // A menu from where the user can choose to take pictures for "Vehicle Damage/Defects" or "Trailer Damage/Defects"
    func showOptionsForAddPhoto(_ indexPath: IndexPath){

        let addPhotoForVehicle = UIAlertAction(title: "Add photo for Vehicle", style: .default) { action in
            self.lastIndexPath = indexPath // Get the position of the cell where to add the vehicle photo
            self.showCamera(imagePicker: self.imagePicker)
        }
        let addPhotoForTrailer = UIAlertAction(title: "Add photo for Trailer", style: .default) { action in
            self.lastIndexPath = indexPath
            self.showCamera(imagePicker: self.imagePicker)
        }
        let actionSheet = configureActionSheet()
        actionSheet.addAction(addPhotoForVehicle)
        actionSheet.addAction(addPhotoForTrailer)
        self.present(actionSheet, animated: true, completion: nil)
    }


    // Get the list of the images from ListImagesDefectVC
    extension ChecklistVC: ListImagesDefectDelegate {

        func receiveListImagesUpdated(imagesFromList: [String]?) {

            print("Received Array: \(imagesFromList ?? [])")

            let item = itemSections[currentIndexPath.section].checklistItems[currentIndexPath.row]
            item.imagesPath = imagesFromList
        }
    }
}


Вот GIF с моей актуальной проблемой.В этом снимке я нажимаю только на Фото 1 и Фото 3. И каждый раз, когда Фотография 2 принимает значение того, что я нажимал ранее:

http://g.recordit.co/VMeGZbf7TF.gif

Спасибо, что читаете это.

1 Ответ

1 голос
/ 08 мая 2019

Я думаю, что в tapOnDefectImageView вы должны использовать indexPath, по которому щелкнули, для ячейки, а не lastIndexPath, поэтому при щелчке по строке отображаются фотографии последнего нажатого indexPath

так что либо добавьте этот жест в ячейку, а в методе действия выполните

delegate?.tapOnDefectImageView(self) //// self = cell

и используйте

@objc func tapOnDefectImageView(_ gest:ChecklistCell){
    guard let indexPath = tableView.indexPath(cell) else { return }
    let listImagesDefectVC = storyboard?.instantiateViewController(withIdentifier: "ListImagesDefectID") as! ListImagesDefectVC
    let item = itemSections[indexPath.section].checklistItems[indexPath.row]

    listImagesDefectVC.listImagesPath = item.imagesPath
    listImagesDefectVC.isPhotoAccessedFromChecklist = true
    listImagesDefectVC.delegate = self
    navigationController?.pushViewController(listImagesDefectVC, animated: true)
}

или создайте

 class CustomImg:UIImageView { 
   var indexPath:IndexPath? 
 }

с этим внутри cellForRowAt

  cell.defectImageView.indexPath = indexPath 
  cell.defectImageView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(tapOnDefectImageView)))

затем назначьте класс для imageView ячейки, и теперь вы можете сделать

@objc func tapOnDefectImageView(_ sender:UITapGestureRecognizer){
    guard let img = sender.view as? CustomImg ,  let indexPath = img.indexPath  else { return }
    let listImagesDefectVC = storyboard?.instantiateViewController(withIdentifier: "ListImagesDefectID") as! ListImagesDefectVC
    let item = itemSections[indexPath.section].checklistItems[indexPath.row]

    listImagesDefectVC.listImagesPath = item.imagesPath
    listImagesDefectVC.isPhotoAccessedFromChecklist = true
    listImagesDefectVC.delegate = self
    navigationController?.pushViewController(listImagesDefectVC, animated: true)
}
...