I am writing a huge NSArray of NSDictionaries. The file size when successfully written to a plist is about 549KB. The thing is, when I start my app, the first time I try to write it, it always returns NO (i.e. it didn't write), but then the next time it write just fine...Is there any way I can find out exactly what error occurred? Thanks.

link|improve this question

69% accept rate
How are you doing it? – Deepak Jun 11 '11 at 6:40
[data writeToFile:plistPath atomically:YES]; – user635064 Jun 11 '11 at 6:44
:) That much I guessed. Where are you writing to? – Deepak Jun 11 '11 at 6:45
feedback

2 Answers

up vote 1 down vote accepted

Might be your array of dictionaries is empty? Try to debug your app.

link|improve this answer
Yes, but the thing is, it always happen the first time ONLY. – user635064 Jun 11 '11 at 6:44
Ah damn, you were right. – user635064 Jun 11 '11 at 6:50
feedback

Use NSData - writeToFile:options:error: instead and see what does the returned error (NSError) say.

link|improve this answer
I have an array, not NSData. – user635064 Jun 11 '11 at 6:44
2  
@user635064 See this for converting an NSArray to NSData. – Deepak Jun 11 '11 at 6:47
feedback

Your Answer

 
or
required, but never shown

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