NSBundle.mainBundle().URLForResource("bach1",withExtension: "jpg")
上面的代码返回null.
let fileManager = NSFileManager.defaultManager() if fileManager.fileExistsAtPath(savepath) { println("exist") }
所以我不明白为什么第一个代码返回null
你的问题是NSBundle.mainBundle().URLForResource(“bach1”,withExtension:“jpg”)返回一个可选的NSURL.如果要打开它并从返回的URL中提取文件路径,则需要使用以下内容:
原文链接:https://www.f2er.com/swift/320198.htmlif let resourceUrl = NSBundle.mainBundle().URLForResource("bach1",withExtension: "jpg") { if NSFileManager.defaultManager().fileExistsAtPath(resourceUrl.path!) { print("file found") } }