gpt4 book ai didi

ios - 为什么我只得到 PFFile 的 2 个对象,而 String 却得到 10 个对象?

转载 作者:行者123 更新时间:2023-11-30 13:29:59 25 4
gpt4 key购买 nike

我正在导入个人资料图片以及姓名等其他信息。有 10 个对象,从 Parse 导入时得到 10 个名称,但只得到两张照片。我可以 100% 确保列名称正确并且列中有图像。我不知道这个错误是否有任何相关性,但我猜它确实 Error

let imagequery = PFQuery(className: "Animal")
imagequery.findObjectsInBackgroundWithBlock { (objects: [PFObject]?, error: NSError?) -> Void in
if(error == nil){
for object in objects!{

if let thumbNail = object["Pic"] as? PFFile{
thumbNail.getDataInBackgroundWithBlock({
(imageData: NSData?, error: NSError?) -> Void in
if (error == nil) {
let image = UIImage(data:imageData!)
//image object implementation
self.tableImage.append(image!)
print(image)
}

})
}
if let name = object["Name"] as? String{
self.Name.append(name)
dispatch_async(dispatch_get_main_queue(), { () -> Void in
self.collectionview.reloadData()
})
}

最佳答案

当我从另一个解析应用程序导入行时,类似的事情发生在我身上,图像无法工作,因为解析文件不在该数据库中。我清理了该列并再次上传了图像,它成功了。

关于ios - 为什么我只得到 PFFile 的 2 个对象,而 String 却得到 10 个对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36675591/

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