So, there is an app installed on the device. It contains a plist to store all the details. Is it possible to access that particular plist from another application? Where it will be residing? I found this code could be used for it!! Is it really possible? Or any other workaround to get it?
NSString *documentdir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSString *tileDirectory = [documentdir stringByAppendingPathComponent:@""];
NSLog(@"Tile Directory: %@", tileDirectory);
Even if I can find the path of that particular plist, would I be able to read it?
EDIT:
My Objective:
I have one app that uses plist to store data, this app uploads the data to a server.
Somehow this app failed to upload certain data available in the plist.
Now i need to get this data stored in the plist.
The app is not configured with iCloud,..
Any suggestions on how the data from the plist can be retrieved?