J'ai déjà fait ça avant, mais ça ne marche pas pour moi maintenant. C'est ce que je fais :
NSString* path = [[NSBundle mainBundle] pathForResource:@"test"
ofType:@"txt"];
NSString* content = [NSString stringWithContentsOfFile:path
encoding:NSUTF8StringEncoding
error:NULL];
NSLog(@"%@",path);
et il retourne (null)
à chaque fois que j'utilise NSLog path et content. Quelqu'un peut-il voir ce que je fais mal ?