从文档目录中的本地映像发出设置UIImageView的问题

时间:2016-03-14 22:22:16

标签: swift realm nsurl sdwebimage nsdocumentdirectory

我正在尝试将使用Alamofire下载的图像加载到文档目录中。我将文件名存储在Realm数据库中。一旦显示图像,我将获取文档目录的路径并附加文件名。这条路径似乎不适用于构建UIImage。

if let name = playlist.RLMsongs[indexPath.row].name, let imageURL = playlist.RLMsongs[indexPath.row].album?.image?.getImageURL(.SmallImage), let fileName = playlist.RLMsongs[indexPath.row].album?.image?.smallLocalFileName {
    cell.songName.text = name

    let range = imageURL.rangeOfString("http")
    if let theRange = range where theRange.startIndex == imageURL.startIndex { // imageURL starts with "http" (remote url)
        cell.albumImage.sd_setImageWithURL(NSURL(string: imageURL), placeholderImage: UIColor.imageFromColor(UIColor.grayColor())) {
            _ in
            cell.albumImage.fadeIn(completion: nil)
        }
    } else {
        cell.albumImage.image = UIImage(named: fileName) // images still do not load
        // tried this first -> cell.albumImage.sd_setImageWithURL(NSURL(fileURLWithPath: imageURL), placeholderImage: UIColor.imageFromColor(UIColor.grayColor()))
    }
}

这是构建路径的位(上面的imageURL):

let documentsDir = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)[0]
let path = documentsDir.URLByAppendingPathComponent(localFile).path
return path

根据TiM的推荐,我在断点上检查了imageURL的值,看起来很不错:

imageURL: "/Users/danielnall/Library/Developer/CoreSimulator/Devices/0B8D64B5-9593-4F86-BBD3-E408682C5C0F/data/Containers/Data/Application/011E4805-40EB-4221-9D7D-1C1D64660186/Documents/75.9226ecd6893cb01a306c974d9d8ffd62803109c1.png"

这是模拟器上的完整路径,并且只缺少文件架构(file://),对于NSURL文件的使用,我认为应该很好.URRWithPath应该没问题。

2 个答案:

答案 0 :(得分:0)

如果您已经在Documents中有PNG文件,那么您需要做的就是这个。

(假设cell.albumImage是UIImageView)

let imageFileName = "75.9226ecd6893cb01a306c974d9d8ffd62803109c1.png"
cell.albumImage.image = UIImage(named: imageFileName)

检查文件是否存在:

func fileExists(filePath: String) -> Bool {
    let filemanager = NSFileManager.defaultManager()
    if filemanager.fileExistsAtPath(filePath) {
        return true
    }
    return false
}

答案 1 :(得分:0)

我最终找到了与这个问题的方向无关的问题的解决方案。原来问题是我在UITableViewCell类中覆盖了prepareForReuse方法。谢谢大家的建议。