Why I can write information to plist on simulator
But can\'t do this on real iphone/ipod device ????
Is there exist an absolute path to put a .plist file in
You can only write to your application's sandbox directory. Below is a function that will return the path to the Documents folder for you app.
- (NSString *)applicationDocumentsDirectory { return [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject]; }