gpt4 book ai didi

ios - 索引超出 Firebase 存储范围

转载 作者:行者123 更新时间:2023-11-30 11:23:49 24 4
gpt4 key购买 nike

我有以下代码。我正在尝试将图像上传到 Firebase Storage 并将每个图像填充到相应的单元格上。当我运行该程序时,我收到 fatal error :索引超出范围:

cell.adImageView.image = fotografiiProfil[nrTotalProduse - indexPath.row - 1]

你能找到结果为什么会发生这种情况吗?

import UIKit
import Firebase
import FirebaseFirestore
import FirebaseStorage

class AnunturiViewController: UITableViewController {

// MARK: - Properties
/*****************************************/

var anunturi: [Produs] = [Produs]()

var docRef: CollectionReference!
var docRefNrTotalProduse: DocumentReference!

let imageNames = ["sneakers", "tshirt", "hoodie", "jacket", "pants", "accessory"]

let activityIndicator = UIActivityIndicatorView()

var fotografiiProfil: [UIImage] = []

var nrTotalProduse: Int = 0
var isDone: Bool!

// MARK: - Application Methods
/*****************************************/

override func viewDidLoad() {
super.viewDidLoad()

isDone = false

activityIndicator.activityIndicatorViewStyle = .gray
activityIndicator.center = self.view.center
activityIndicator.hidesWhenStopped = true
activityIndicator.startAnimating()
self.view.addSubview(activityIndicator)

self.tableView.tableFooterView = UIView(frame: CGRect(x: 0, y: 0, width: self.view.frame.width, height: 49))

docRefNrTotalProduse = Firestore.firestore().collection("anunturi").document("anunturi")

reloadTableView()
}

// MARK: - TableView Delegate and DataSource Methods
/*****************************************/

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "ADCell") as! ADTableViewCell
if isDone == true {
print(indexPath.row)
cell.adImageView.image = fotografiiProfil[nrTotalProduse - indexPath.row - 1]
cell.numeLabel.text = self.anunturi[nrTotalProduse - indexPath.row - 1].nume
cell.descriereLabel.text = self.anunturi[nrTotalProduse - indexPath.row - 1].descriere
cell.marimeLabel.text = self.anunturi[nrTotalProduse - indexPath.row - 1].marime
cell.locatieLabel.text = self.anunturi[nrTotalProduse - indexPath.row - 1].locatie
cell.pretLabel.text = self.anunturi[nrTotalProduse - indexPath.row - 1].pret
switch self.anunturi[nrTotalProduse - indexPath.row - 1].categorie {
case "sneakers":
cell.categorieImageView.image = UIImage(named: self.imageNames[0])
break
case "tricouri":
cell.categorieImageView.image = UIImage(named: self.imageNames[1])
break
case "bluze":
cell.categorieImageView.image = UIImage(named: self.imageNames[2])
break
case "jachete":
cell.categorieImageView.image = UIImage(named: self.imageNames[3])
break
case "pantaloni":
cell.categorieImageView.image = UIImage(named: self.imageNames[4])
break
case "accesorii":
cell.categorieImageView.image = UIImage(named: self.imageNames[5])
break
default:
break
}
}
return cell
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return nrTotalProduse
}

override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 164.0
}

// MARK: - IBACtions
/*****************************************/

@IBAction func onRefreshButtonPressed(_ sender: UIBarButtonItem) {
reloadTableView()
}

// MARK: - Fetch Data From Firestore
/*****************************************/

func reloadTableView() {
fetchDataForNumberOfProducts()
}

func fetchData() {
anunturi.removeAll()
docRef = Firestore.firestore().collection("anunturi")
docRef.getDocuments() { (querySnapshot, error) in
if let error = error {
print("Error getting documents: \(error)")
} else {
for document in querySnapshot!.documents {
let data = document.data()
if document == querySnapshot?.documents.last {
self.fetchImages()
} else {
let produs = Produs(nume: (data["nume"] as? String)!,
descriere: (data["descriere"] as? String)!,
marime: (data["marime"] as? String)!,
produsNou: (data["produsNou"] as? Bool)!,
fotografii: (data["fotografii"] as? [String])!,
locatie: (data["locatie"] as? String)!,
livrezTara: (data["livrezTara"] as? Bool)!,
email: (data["email"] as? String)!,
telefon: (data["telefon"] as? String)!,
pret: (data["pret"] as? String)!,
autor: (data["autor"] as? String)!,
categorie: (data["categorie"] as? String)!)
self.anunturi.append(produs)
}
}
}
}
}

func fetchImages() {
for i in 0...(nrTotalProduse - 1) {
let storage = Storage.storage()
let storageRef = storage.reference()
let imageRef = storageRef.child("fotografii/" + anunturi[i].fotografii[0])
imageRef.getData(maxSize: 1024 * 1024 * 1024) { (data, error) in
if error != nil {
print(error!.localizedDescription)
} else {
self.fotografiiProfil.append(UIImage(data: data!)!)
if i == self.nrTotalProduse - 1 {
self.doneFetching()
}
}
}
}
}

func doneFetching() {
isDone = true
tableView.reloadData()
activityIndicator.stopAnimating()
}

func fetchDataForNumberOfProducts() {
docRefNrTotalProduse = Firestore.firestore().collection("anunturi").document("anunturi")

docRefNrTotalProduse.getDocument { (snapshot, error) in
if error != nil { print(error ?? "0") }
else {
let data = snapshot?.data()
self.nrTotalProduse = data!["numarAnunturi"] as! Int
self.fetchData()
}
}
}

}

最佳答案

基于我们在尝试解决您的帖子中的错误时遇到的困惑,我决定给您一个我完成您正在做的事情的示例(至少是我认为您正在做的事情) 。有一些清理工作可以使您的代码更易于理解且更高效。首先,我不确定为什么要进行数学计算来计算数组的索引,而不是使用 indexPath.row。这正是你的问题所在。这段代码有望阐明如何让您的数据共享相同的索引,以避免您正在进行的计算。

首先,我定义了一个类(就像您所做的那样)来保存数据库中存储的数据。这是该类:

class Angel {
var name: String?
var email: [String]? // multiple Emails
var phone: [String]? // multiple Numbers
var photo: UIImage? // variable to hold image
var filepath: String? // variable to hold image URL
}

接下来,我创建了一个数据源单例来在应用程序中的所有页面之间共享数据。该数据源还有更多内容,但对于本示例而言,您需要看到以下内容:

class PageDataSource {
/**
Store for Angel, User, CRUD, and Checkin info
*/

var angels = [Angel]() // array to hold the Angel objects
var crudIsAvailable: Bool? // check for connection stored variable

// singleton for global access
static let sharedInstance = PageDataSource()
private init() {}
}

Angel 对象存储到 Firebase 后,我必须编写一种方法来检索它:

// Read function to download the data from Firebase 
func readAngels(completion: @escaping (_ error: NSError?) -> Void) {
if PageDataSource.sharedInstance.crudIsAvailable == true { // check for connection
Database.database().reference().child("angels").child(id).observeSingleEvent(of: .value) { (snapshot) in
print(snapshot)
var angels = [Angel]() // array to store firebase data
if let snapshots = snapshot.children.allObjects as? [DataSnapshot] {
for snap in snapshots { // loop through each angel object stored in the database
var angel = Angel()
if let dict = snap.value as? Dictionary<String, AnyObject> {
angel.name = dict["name"] as? String ?? ""
angel.email = dict["email"] as? [String] ?? [""]
angel.phone = dict["phone"] as? [String] ?? [""]
angel.filepath = dict["photo"] as? String ?? "" // get filepath for photo download

angels.append(angel) // add new angel to array
}
}
PageDataSource.sharedInstance.angels = angels // set new array of angels as the loaded angels in singleton
completion(nil)
} else {
completion(NSError(domain: "Error reading Snapshots", code: 99, userInfo: nil))
}
}
} else {
completion(NSError(domain: "Unavailable", code: 0, userInfo: nil))
}
}

调用readAngels()函数:

// using the readAngels() function to load angels
readAngels(completion: { (err) in
if err != nil {
print(err!.localizedDescription)
} else {
// do proper segue. No angels = sign up, 1 or more = login
if PageDataSource.sharedInstance.angels.count == 0 {
// User exists but no angels have been stored
self.performSegue(withIdentifier: "signUpSegue", sender: self)
} else {
// Stored angels detected, proceed with app flow
self.performSegue(withIdentifier: "logInSegue", sender: self)
}
}
})

调用readAngels()函数后,我将加载tableView。当单元格布局完毕后,我读取数据源中存储的数据并填充单元格。如果数据源中有已解码的照片,则立即加载。如果没有,我使用数据源中的filepath来检索图像:

// tableView function to populate cells
// this will load images asyncronously as the cells are displayed on the screen
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell(style: .default, reuseIdentifier: "CellID") // set cell for reuse
// check for image already loaded in Datasource
if let pic = PageDataSource.sharedInstance.angels[indexPath.row].photo {
// if image is already available set imageView content
cell.imageView?.image = pic
cell.setNeedsLayout()
// if no image in Datasource pull it from firebase storage
} else if let imgURL = PageDataSource.sharedInstance.angels[indexPath.row].filepath {
Storage.storage().reference(forURL: imgURL).getData(maxSize: INT64_MAX, completion: { (data, error) in
guard error == nil else {
print("error downloading: \(error!)")
return
}
// render
let img = UIImage.init(data: data!)
// store to datasource
PageDataSource.sharedInstance.angels[indexPath.row].photo = img
// display img
if cell == tableView.cellForRow(at: indexPath){
DispatchQueue.main.async {
cell.imageView?.image = img
cell.setNeedsLayout()
}
}
})
} else {
cell.imageView?.image = UIImage(contentsOfFile: "Placeholder.png")
}
// set text
cell.textLabel?.text = PageDataSource.sharedInstance.angels[indexPath.row].name
return cell
}

关于ios - 索引超出 Firebase 存储范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50976889/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com