No se puede copiar el archivo del paquete al directorio de documentos en iOS

Estoy tratando de copiar un archivo de mi paquete al directorio de documentos en iOS con el siguiente código.

let bundlePath = NSBundle.mainBundle().pathForResource("information", ofType: ".png")
print(bundlePath, "\n") //prints the correct path
let destPath = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true).first!
let fileManager = NSFileManager.defaultManager()
let fullDestPath = NSURL(fileURLWithPath: destPath).URLByAppendingPathComponent("information.png")
let fullDestPathString = String(fullDestPath)
print(fileManager.fileExistsAtPath(bundlePath!)) // prints true

do{
try fileManager.copyItemAtPath(bundlePath!, toPath: fullDestPathString)
}catch{
    print("\n")
    print(error)
}

Error Domain = NSCocoaErrorDomain Code = 4 "El archivo" information.png "no existe". UserInfo = {NSSourceFilePathErrorKey = / Users / macbookpro / Library / Developer / CoreSimulator / Devices / E58CA1C6-C6F1-4D72-9572-3925675E78A5 / data / Containers / Bundle / Application / EFA83E02-5F24-4BB3-B32A-7E7550.Ap1AA1A1A81A1A81 /information.png, NSUserStringVariant = (Copiar), NSDestinationFilePath = archivo: /// Users / macbookpro / Library / Developer / CoreSimulator / Devices / E58CA1C6-C6F1-4D72-9572-3925675E78A5 / data / Containers / Data / Application / 86A1BDD-- FAF2-486E-85A9-CF72A547C6CD / Documents / information.png, NSFilePath = / Users / macbookpro / Library / Developer / CoreSimulator / Devices / E58CA1C6-C6F1-4D72-9572-3925675E78A5 / data / Containers / Bundle / Application / EFA24E02 -4BB3-B32A-7E755081A730 / AutoLayout tuts.app/information.png, NSUnderlyingError = 0x7fb53251cd80 {Error Domain = NSPOSIXErrorDomain Code = 2 "No existe dicho archivo o directorio"}}

De acuerdo con lafileManager.fileExistsAtPath() el archivo de hecho existe. ¿Qué estoy haciendo mal?

Respuestas a la pregunta(5)

Su respuesta a la pregunta