Загрузить изображение из Firebase - PullRequest
0 голосов
/ 17 мая 2019

Пожалуйста, помогите мне. Объясните, как установить изображение в ячейке. В моей базе данных у меня есть: title, description и imageURL (url из Firebase Storage). Можешь написать мне код и объяснить.

class TrainingProgram
{
    var description = ""
    var title = ""
    var imageURL = ""


    init(description: String, title: String, imageURL: String) {
        self.description = description
        self.title = title
        self.imageURL = imageURL

    }

функция для получения данных из базы.

func fetchPrograms() {
        Database.database().reference().child("programs").observe(.childAdded) { (snapshot) in
            if let dict = snapshot.value as? [String: AnyObject] {
                let newTitle = dict["title"] as! String
                let newDescription = dict["description"] as! String
                let newImageURL = dict["imageURL"] as! String
                let trainingCell = TrainingProgram(description: newDescription, title: newTitle, imageURL: newImageURL)
                self.trainingPrograms.append(trainingCell)
                DispatchQueue.main.async {
                    self.collectionView.reloadData()

                }
            }
        }

    }

И вот как я устанавливаю заголовок и описание для своих ячеек.

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

        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "TrainingProgramCollectionViewCell", for: indexPath) as!  TrainingProgramCollectionViewCell

        //cell.featuredImageView.setImage(from: indexPath.item)
        cell.titleLabel.text = trainingPrograms[indexPath.item].title
        cell.descriptionLabel.text = trainingPrograms[indexPath.item].description

Что мне нужно написать в функции получения данных для получения изображений и как установить изображения в ячейках

structureOfDatabase

1 Ответ

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

Установите модуль SDWebImage по этой ссылке https://github.com/SDWebImage

И в вашем CollectioView cellForRow метод

    var images_list = [String]()
    var imagesArray = [URL]()
    images_list.append(itemModel[indexPath.row]. imageURL)
    let storage = Storage.storage().reference()

    for x in images_list{
        print(x)

        let storageRef = storage.child("images/\(x).jpg")
        storageRef.downloadURL { (url, error) in
            if let error = error{
                print(error.localizedDescription)
            }
            else{
                imagesArray.append(url!)
            }
            if let x = images_list.last{
              cell.itemImage.sd_setImage(with: URL(string: x), placeholderImage: UIImage(named: "default"))
            }
        }
    }

Полный код

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

    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "TrainingProgramCollectionViewCell", for: indexPath) as!  TrainingProgramCollectionViewCell

    //cell.featuredImageView.setImage(from: indexPath.item)
    cell.titleLabel.text = trainingPrograms[indexPath.item].title
    cell.descriptionLabel.text = trainingPrograms[indexPath.item].description

    var images_list = [String]()
    var imagesArray = [URL]()
     for x in images_list{
        print(x)

        let storageRef = storage.child("images/\(x).jpg")
        storageRef.downloadURL { (url, error) in
            if let error = error{
                print(error.localizedDescription)
            }
            else{
                imagesArray.append(url!)
            }
            if let x = images_list.last{
              cell.itemImage.sd_setImage(with: URL(string: x), placeholderImage: UIImage(named: "default"))
            }
        }
    }

 }

Попробуйте это для одногоЗагрузка изображенияПросто возьмите свой imageUrl из базы Firebase

 let x: String = "yourImageUrl" 
 let storageRef = storage.child("images/\(x).jpg")
        storageRef.downloadURL { (url, error) in
            if let error = error{
                print(error.localizedDescription)
            }
            else{
                imagesArray.append(url!)
            }
            if let x = images_list.last{
              cell.itemImage.sd_setImage(with: URL(string: x), placeholderImage: UIImage(named: "default"))
            }
        }
...