我在Parse中有一个我想加载的图像作为按钮的图像。
这是我的代码:
let myData = PFObject(className: "Headliner")
if let theImageFileINeed = myData["ImageFile"] as! PFFile? {
theImageFileINeed.getDataInBackgroundWithBlock { (imageData: NSData?, error: NSError?) -> Void in
if (error == nil) {
print("loadingimage?")
if let imageData = imageData {
let image = UIImage(data: imageData)
self.headlinerImage.setImage(image, forState: UIControlState.Normal)
}
} else {
print("error")
}
}
}
以下是我从Parse文档中引用的代码:
let userImageFile = anotherPhoto["imageFile"] as PFFile
userImageFile.getDataInBackgroundWithBlock {
(imageData: NSData?, error: NSError?) -> Void in
if error == nil {
if let imageData = imageData {
let image = UIImage(data:imageData)
}
}
}
当我使用那个确切的代码时(我将它放在viewDidLoad中,但我不确定这是否正确),在示例中替换我的表名为“anotherPhoto”(imageFile是我的字段的名称,也是,所以我没有必要改变),我得到以下错误消息:“使用未解析的标识符”头条新闻“。那么,那么我假设这可能在查询内部?或者我需要以某种方式指定表我想从中提取数据,所以我添加了myData变量以将其拉入。
当我运行它时,我没有收到错误消息,但我的按钮不会从解析中更新图像。
我怀疑它与类型有关,可能就是“让我的数据= PFObject(className:”headliner“)行...但我不知道如何解决它......
任何帮助将不胜感激!我烤饼干,所以如果你帮我解决这个问题,我会给你发一些!!!
马里
答案 0 :(得分:1)
非常确定此代码应该有效。您可能必须将界面构建器中的按钮设置更改为“自定义”按钮。
或者只是以编程方式创建按钮...请参阅此处: How to create a button programmatically?
答案 1 :(得分:1)
使用PFFile
从Parse加载tableView中的图像第一步,确保导入解析库:
import Parse
第二步,声明一个PFFile数组,类似于:
var imageFiles = [PFFile]()
第三,将所有图像存储在数组中:
let query = PFQuery(className:"your_class")
query.findObjectsInBackgroundWithBlock {
(objects: [PFObject]?, error: NSError?) -> Void in
if error == nil{
for writerData in objects! {
self.imageFiles.append(writerData["avatar"] as! PFFile)
}
/*** reload the table ***/
self.yourTableView.reloadData()
} else {
print(error)
}
}
第四,为了展示它(在我的情况下我在UITableView中显示图像),所以在cellForRowAtIndexPath中:
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! YourClassTableViewCell
imageFiles[indexPath.row].getDataInBackgroundWithBlock{
(imageData: NSData?, error: NSError?) -> Void in
if imageData != nil{
let image = UIImage(data: imageData!)
cell.cellAvatarImage.image = image
} else {
print(error)
}
}
答案 2 :(得分:0)
您需要尝试在其他线程中更新图像。 (这也让我多次) 此外,我通常更改我的变量的名称unwrapped版本,以便我可以轻松区分它们。
dispatch_async(dispatch_get_main_queue(), { () -> Void in
//Image update code goes here
if let unWrappedimageData = imageData {
let image = UIImage(data: unWrappedimageData)
self.headlinerImage.setImage(unWrappedimageData, forState: UIControlState.Normal)
}
})