Application folder name changes every time i run in simulator

2.6k Views Asked by At

Whenever I restart my application it's folder name in finder is changed from

09323D3F-D371-4556-ABA3-BD23AF487F12

to

E771BBEC-ACC6-489C-B7C1-B5FF11004CB2/

NSHomeDirectory() is changing everytime I run the app in simulator.

3

There are 3 best solutions below

2
On BEST ANSWER

Don't save the full path, but just the directory and file name to the images. Since this behaviour is new in iOS 8 and will happen on a real device.

0
On

i think you have this link in your code NSDocumentationDirectory change it into NSDocumentDirectory

NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
0
On

save your file path like as follows :

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *documentsDirectory = [paths objectAtIndex:0];

NSString *localFilePath = [documentsDirectory stringByAppendingPathComponent:[[yourArray objectAtIndex:indexPath.section]lastPathComponent]];