Why can I write simulation information on a simulator
But can not do this on a real iphone / ipod device ????
Is there an absolute path for placing a .plist file in an xcode project ???
Thanks for the answers and answers ~
code: this is how I write text for plist from a text field
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"Password" ofType:@"plist"];
NSMutableDictionary *propertyList = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
[propertyList setValue:serialNumber.text forKey:@"serial_number"];
source
share