Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created March 7, 2014 15:30
Show Gist options
  • Save jlcampana/9413575 to your computer and use it in GitHub Desktop.
Save jlcampana/9413575 to your computer and use it in GitHub Desktop.
Borrar un fichero
@property (SDDispatchQueueSetterSementics, nonatomic) dispatch_queue_t ioQueue;
//...
_ioQueue = dispatch_queue_create("com.currycat.files", DISPATCH_QUEUE_SERIAL);
//...
if (path) {
dispatch_async(self.ioQueue, ^{
[[NSFileManager defaultManager] removeItemAtPath:path error:nil];
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment