J'ai mis en place le code suivant pour enregistrer un fichier dans le répertoire des documents :
NSLog(@"Saving File...");
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.reddexuk.com/logo.png"]];
AFHTTPRequestOperation *operation = [[[AFHTTPRequestOperation alloc] initWithRequest:request] autorelease];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *path = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"logo.png"];
operation.outputStream = [NSOutputStream outputStreamToFileAtPath:path append:NO];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"Successfully downloaded file to %@", path);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error: %@", error);
}];
[operation start];
Cependant, je souhaite ajouter chaque fichier à une UITableView lorsqu'il est enregistré avec succès. Lorsque l'on touche le fichier dans l'UITableView, j'aimerais qu'une UIWebView navigue jusqu'à ce fichier (tout en étant hors ligne).
De même, comment puis-je obtenir le nom du fichier et sa terminaison, par exemple "logo.png" au lieu de http://www.reddexuk.com/logo.png ?
Comment puis-je le faire ?