Vi un video de WWDC 2010 sobre NSFileProtectionComplete y protección de datos de la aplicación.NSFileProtectionComplete para iOS 4.0 aplicaciones
¿Hay algún ejemplo por ahí? ¿Alguien tiene código de muestra para compartir?
Vi un video de WWDC 2010 sobre NSFileProtectionComplete y protección de datos de la aplicación.NSFileProtectionComplete para iOS 4.0 aplicaciones
¿Hay algún ejemplo por ahí? ¿Alguien tiene código de muestra para compartir?
Véase el doc clase NSFileManager:
The file is stored in an encrypted format on disk and cannot be read from or written to while the device is locked or booting.
Se trata básicamente de almacén de archivos para los archivos individuales. Usted acaba de pasar la constante cuando establece los atributos del archivo.
To mark a file as protected, you must add an extended attribute to it. The Foundation framework includes two ways to add this attribute:
When writing the contents of an NSData object to disk using the writeToFile:options:error: method, include the NSDataWritingFileProtectionComplete option.
Use the setAttributes:ofItemAtPath:error: method of NSFileManager to add the NSFileProtectionKey attribute (with the NSFileProtectionComplete value) to an existing file
.
Hola, estoy apurado, ¿me pueden explicar qué hace realmente NSFileProtetionKey en el archivo? – satheeshwaran
Si establezco este comportamiento en el archivo de directorio de documentos. ¿Es posible acceder al archivo en iDevice Locked State? @TechZen – iTag
Debe tener cuidado con esto. Es una buena manera de dispararse en el pie porque el sistema puede hacer que los archivos sean ilegibles en el momento que elija. – TechZen
Documentación sobre eso, TechZen? – memmons