Я застрял в течение нескольких часов, и я не могу понять это.Я все еще новичок в программировании, может быть, вы можете помочь мне
Я уже создал функцию, где она загружает все данные в firebase Хранилище
//this is to call the other class
var discover = MainViewController()
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
let image = info[UIImagePickerController.InfoKey.originalImage] as! UIImage
imageCam.image = image
MainViewController.stuffImages.append(image)
MainViewController.Stuff.append("yes")
picker.dismiss(animated: true, completion: nil)
}
/// this is how it looks in the collection view
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return MainViewController.Stuff.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! DiscoverCollectionViewCell
cell.titleLable.text = MainViewController.Stuff[indexPath.item]
cell.imageView.image = MainViewController.stuffImages[indexPath.item]
return cell
}
как я могу вызвать свое хранилище в firebaseи поместите его в cell.imageView.image