I've seen the explanation that writeToFile doesn't work with non-objects, however, this snippet shows there is a serious gap in what works on the iPad device and how the simulator works.

NSMutableArray *arrayOne = [NSMutableArray arrayWithObjects:@"Thing One", @"Thing Two", @"Thing Three", nil];
[arrayOne writeToFile:@"myLocalMovieMetaData-v11" atomically:YES];
NSLog(@"cancelNowButton Test Metadata File Written.");  
NSMutableArray *arrayTwo = [NSMutableArray arrayWithContentsOfFile:@"myLocalMovieMetaData-v11"];
NSLog(@"arrayOne: %@",arrayOne);
NSLog(@"arrayTwo: %@",arrayTwo);  //this prints on simulator but not the device.
link|improve this question
feedback

1 Answer

The application only has permission to write to its Documents directory:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"myLocalMovieMetaData-v11"];

Then use:

[arrayOne writeToFile:path atomically:YES];
link|improve this answer
This is exactly the problem. (You beat me to it by a few seconds.) To the OP, check the root of your hard drive. You'll find that the "myLocalMovieMetaData-v11" file has been created there. – craig Jan 10 '11 at 23:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.