我想调用TableViewData Sources方法,用于在解析后调用Ui。有了这个我能够获取
func loadImages() {
var query = PFQuery(className: "TestClass")
query.orderByDescending("objectId")
query.findObjectsInBackgroundWithBlock ({(objects:[AnyObject]!, error: NSError!) in
if(error == nil){
self.getImageData(objects as [PFObject])
}
else{
println("Error in retrieving \(error)")
}
})//findObjectsInBackgroundWithblock - end
}
func getImageData(objects: [PFObject]) {
for object in objects {
let thumbNail = object["image"] as PFFile
println(thumbNail)
thumbNail.getDataInBackgroundWithBlock({
(imageData: NSData!, error: NSError!) -> Void in
if (error == nil) {
var imageDic = NSMutableArray()
self.image1 = UIImage(data:imageData)
//image object implementation
self.imageResources.append(self.image1!)
println(self.image1)
println(self.imageResources.count)
}
}, progressBlock: {(percentDone: CInt )-> Void in
})//getDataInBackgroundWithBlock - end
}//for - end
self.tableView.reloadData()
但是无法像这样将这些获取的数据填充到tableview
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
println("in table view")
println(self.imageResources.count)
return imageResources.count+1;
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell:CustomTableViewCell = tableView.dequeueReusableCellWithIdentifier("customCell") as CustomTableViewCell
var (title, image) = items[indexPath.row]
cell.loadItem(title: title, image: image)
println("message : going upto this line")
println(self.imageResources.count)
var (image1) = imageResources[indexPath.row]
cell.loadItem1(image1: image1)
return cell
}
然后在loaditem上我试图显示图像并且我已经编写了我自己的数组来填充图像数组但是我在填充时将其设为零值,因此无法设置它
非常感谢任何帮助!
答案 0 :(得分:0)
你有几个问题,都与并发有关 - 你的负载是在后台和并行发生的。
第一个问题是在加载过程中使用self.image1
作为临时变量 - 这个变量可以由多个线程同时访问。您应该为此目的使用局部变量。
其次,您从多个线程追加self.imageResources
,但Swift数组不是线程安全的。
第三,你需要在完成加载所有数据之后在你的tableview上调用reload,这是因为你在后台操作仍在进行时调用它所以现在没有发生。
最后,您的getImageData
函数正在后台队列上执行,您必须在主队列上执行UI操作(例如重新加载表)。
最简单的选择是将获取缩略图加载更改为同步调用 - 这意味着您的缩略图将按顺序加载,并且可能需要更长的时间来执行多个并行任务,但更容易管理 -
func getImageData(objects: [PFObject]) {
for object in objects {
let thumbNail = object["image"] as PFFile
println(thumbNail)
let imageData? = thumbNail.getData
if (imageData != nil) {
let image1 = UIImage(data:imageData!)
//image object implementation
self.imageResources.append(image1!)
println(self.imageResources.count)
}
}//for - end
dispatch_async(dispatch_get_main_queue(), {
self.tableView.reloadData()
})
}
更复杂的方法是使用调度组并保持并行图像加载。为此,您需要保护对共享阵列的访问