Load a file in a group objective-c Xcode
- by okami
I'd like to load a file from a specific Group in Xcode/Objective-c
for example:
I have TWO files named "SomeFile.txt" that are in two different folders (folders not groups yet) in the OS:
SomeFolderOne
|- SomeFile.txt
SomeFolderTwo
|- SomeFile.txt
Inner Xcode I make two folders, and I put a REFERENCE to these two files:
SomeGroupOne
|- SomeFile.txt // this file is a reference to the SomeFile.txt from SomeFolderOne
SomeGroupTwo
|- SomeFile.txt // this file is a reference to the SomeFile.txt from SomeFolderTwo
Now I want to read the txt content with:
NSString *contents = [NSString stringWithContentsOfFile:@"SomeFile.tx" encoding:NSUTF8StringEncoding error:nil];
Ok it reads the 'SomeFile.txt' but sometimes the file read is from SomeGroupOne and sometimes the file is read from SomeGroupTwo.
How to specify the group I want the file to be read?