与Parse异步

时间:2016-01-21 04:04:49

标签: ios swift asynchronous parse-platform

我正在构建基于图片的应用。因此,对我来说非常重要的是像Instagram一样异步检索所有图像。我明白这个功能......

    var query = PFQuery(className: "Post")
    query.findObjectsInBackgroundWithBlock { (objects, error) -> Void in
        if let objects = objects as! [PFObjects] {
            for object in objects {
                objectsArray.append(object)
            }
        }
    }

...是异步的。但我想要一种方法将Parse中的图像异步加载到表中,以便在滚动时加载图像。

1 个答案:

答案 0 :(得分:2)

您应该查看PFImageView的函数loadInBackground()

例如,如果您正在使用带有PFTableViewCell的PFTableViewController,则可以执行以下操作

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject?) -> PFTableViewCell {

    var cell = tableView.dequeueReusableCellWithIdentifier("CustomCell") as! CustomTableViewCell!
    if cell == nil {
        cell = CustomTableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "CustomCell")
    }

    if let name = object?["name"] as? String {
        cell.nameLbl.text = name
    }

    var initialThumbnail = UIImage(named: "placeholder")
    cell.imgView.image = initialThumbnail
    if let thumbnail = object?["photo"] as? PFFile {
        cell.imgView.file = thumbnail
        cell.imgView.loadInBackground()
    }

    return cell
}

PFTableViewCell

class CustomCell: PFTableViewCell {
    @IBOutlet weak var nameLbl: UILabel!
    @IBOutlet weak var imgView: PFImageView!
}

同样来自另一个SO reply,你可以试试这个:

let userImageFile = userPhoto["imageFile"] as PFFile
userImageFile.getDataInBackgroundWithBlock {
    (imageData: NSData!, error: NSError!) -> Void in
    if !error {
        let image = UIImage(data:imageData)
    }
}