vote up 0 vote down star
1

Hi,

I've one plist file and I want to parse it and copy it's content into NSArray,and code that I am using for that is.

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

NSString *documentsPath = [paths objectAtIndex:0];

NSString *fooPath = [documentsPath stringByAppendingPathComponent:@"myfirstplist.plist"];
NSLog(fooPath);
self.myArray = [[NSArray arrayWithContentsOfFile:fooPath] retain];
NSLog(@"%@",myArray);

Now problem is very weird, sometime when I print myArray content it prints file data, and sometime it doesn't.

I am facing a same problem even when I use URL as my path.

self.myArray = [[NSArray arrayWithContentsOfURL:URlPath] retain];

what would be the reason?

Thanks in advance.

flag

65% accept rate
What happens when the array content is not printed? Is there an error, or does the log just show (null)? – eJames Dec 1 '08 at 6:52

3 Answers

vote up 0 vote down

It was very stupid mistake,
I declared "myarray" properties as "retain and nonatomic" and during parsing operation I am retaining it again,

self.myArray = [[NSArray arrayWithContentsOfURL:URlPath] retain];

means I retained it but never released it.that's why that weird problem was there.

Cheers.

link|flag
vote up 4 vote down

Depending on how you generated the .plist initially, you may run into problems if you try and read it back in as an array. The safest way to read a plist is using the NSPropertyListSerialization class: Apple Doc.

link|flag
vote up -1 vote down

Are you generating the file with writeToFile:atomically: ? do you check that this returns true?

link|flag

Your Answer

Get an OpenID
or

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