- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我试图在 PFFile 尝试从背景中拉出图像之前检查它是否有数据。我正在尝试这样做,因为如果您尝试打开其中一个对象并且没有图像,我会不断发生致命崩溃!我的问题是我无法让数据检查工作。 PFFile != nil
不起作用,您无法使用 if (recipeImageData)
检查它是否存在,因为 PFFile 不符合 bool 协议(protocol)。任何帮助将不胜感激!
这里是变量的声明:
var recipeImageData: PFFile = PFFile()
下面是获取数据的函数:
override func viewWillAppear(animated: Bool) {
navItem.title = recipeObject["Name"] as? String
recipeImageData = recipeObject["Image"] as PFFile //Fatally crashes on this line
// Fetch the image from the background
if (recipeImageData) {
recipeImageData.getDataInBackgroundWithBlock({
(imageData: NSData!, error: NSError!) -> Void in
if error == nil {
self.recipeImage.image = UIImage(data: imageData)?
} else {
println("Error: \(error.description)")
}
})
}
}
编辑:
我刚刚尝试了这个,发现我可能在错误的区域进行了检查。这是我更新的代码。
override func viewWillAppear(animated: Bool) {
navItem.title = recipeObject["Name"] as? String
if let recipeImageData = recipeObject["Image"] as? PFFile {
// Fetch the image in the background
recipeImageData.getDataInBackgroundWithBlock({
(imageData: NSData!, error: NSError!) -> Void in
if error == nil {
self.recipeImage.image = UIImage(data: imageData)?
} else {
println("Error: \(error.description)")
}
})
}
}
最佳答案
这个检查实际上工作得很好,还有另一个问题导致了崩溃。正确的代码贴在下面:
override func viewWillAppear(animated: Bool) {
navItem.title = recipeObject["Name"] as? String
if let recipeImageData = recipeObject["Image"] as? PFFile {
// Fetch the image in the background
recipeImageData.getDataInBackgroundWithBlock({
(imageData: NSData!, error: NSError!) -> Void in
if error == nil {
self.recipeImage.image = UIImage(data: imageData)?
} else {
println("Error: \(error.description)")
}
})
}
}
关于ios - 尝试检查 PFFile 是否有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29234518/
我得到了“从 PFFile 到 PFFile 的条件转换总是成功”的提示,它突出显示了 if let tempProductPicture = self.askProductImageArray[0]
从 Parse 检索图像并将其显示在 tableView 上,如果我向下滚动 tableView,应用程序崩溃并给出“ fatal error :数组索引超出范围” 行数由“messagesArray
我想从磁盘获取 PFFile。我在这里了解到 Parse 会在下载所有 PFFile 时对其进行缓存。我现在想知道如何检索该缓存。什么是正确的路径。我使用的路径建议here NSString *pat
我正在尝试根据附加到我从中提取 imageFile 的同一对象的 objectID 检索 PFFile 图像。所有其他细节都被正确拉取(字符串),但是,当我拉取 PFFile 时,会加载该类中的随机图
解析仪表板版本 1.1.2 解析服务器版本2.7.1 环境设置 在 Ubuntu 16.4( digital ocean Droplet)上运行的 Parse-Dashboard 重现步骤 添加新的文
是否可以在运行 Parse Server 的 mlab.com/heroku 中的一个字段名下保存一组图像。我试图在一个字段名称中保存 150 张图像。我知道如何保存一张图片。但是是否有可能在一个字段
我在使用我的 iOS 应用程序从我的数据库中上传的 PFFile 的 URL 流式传输视频时遇到问题。我使用了 Heroku 和 AWS,但我仍然遇到同样的问题。当文件托管在旧的解析服务器中时,它过去
Parse.com 刚刚更新了他们的 SDK 以支持本地存储。但是在安装新的 SDK 之后,PFFile 出现了一些问题。我已经使用相同的方法很长时间了,但是现在我使用的是新的 SDK,我无法让它工作
我正在使用 Parse,并且有一个名为“GolfScorecard”的类,该类有多个键,其中包括一个“scorecardImage”键,它是一个 PFFile。我正在尝试将所有高尔夫记分卡信息显示在
我有一个 UItextView,我可以在其中放置图像并输入文本,一旦完成 TextView,我就会将该 textView 的内容上传到 Parse。 如果我只向 textView 添加 1 个图像,它
我在我的 iOS 应用程序中使用核心数据实现了一个本地数据库,该数据库从由 Parse 驱动的后端填充。 我想要一个 Core Data 实体,它的属性是 PFFile(一个解析文件对象)。 Core
这是我加载图片的方式: func LoadImage(sender:FeedVC, cellId:Int){ self.currentlyLoading = true let quer
我上传了一个 PFFile 到 Parse.com,并保存了 PFFile 的 url。然后我删除了 PFFile,并尝试使用保存的 url 下载 PFFile。成功了! 所以我的问题是:Parse.
在我的聊天应用程序中,我对用户表使用 Parse,获取 ID、图像等。我最近添加了此功能,但遇到了一个问题。当我发送消息时,我创建了一个 NSDictionary,其中包含有关消息的信息,例如时间、消
我已经在这个问题上停留了很长一段时间,我阅读了很多线程,但没有一个描述了我的问题我尝试了一大堆不同的方法来解决这个问题,但没有一个奏效。我有一个从数组中提取并通过 segue 发送到下载详细信息 Vi
我正在尝试使用解析从指针获取图像。我正在尝试从类中提取图像而不发出第二个请求。 这是代码: PFFile * connectImageFile = [object objectForKey:@"pra
我想在一个 PFFile 中保存 2 个数据:一个图像和一个数据声音。这对于图像 (fileData) 来说是正确的,但我想在 Parse.com 中为数据声音 (fileData2) 添加一列。我怎
这是我的 NGINX 设置, HTTPS 服务器 server { listen 443 ssl spdy; location /myparseserver/ {
我正在为我的应用程序使用 Parse 和 MongoDB,但我有一个关于 PFFile 的问题。我想在服务器上保存一个空的 PFFile。事实上,用户不必发送图片,但可以通过其他方式发送。 我想设置一
基本上我正在努力解决这个问题:我安装了一个 FacebookAlbumPicker ( https://github.com/OceanLabs/FacebookImagePicker-iOS ) 现
我是一名优秀的程序员,十分优秀!