Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to edit a plist from Xcode which I will use to fill the table view.

The thing is I have an array of images, and the user can add one of these images to a favorites list.

This needs to be written to the plist. So I need the index number of the image and the name they choose to save it with. How can I write to a plist?

Then when they view favorites and they select an item in the table, that needs to load and display the appropriate image.

I was thinking of writing the name they choose with the number of the index appended with for e.g. "index_titleSaved" and then when reading from the plist I could just grab the number before the first _. and then show it.

Is this a good way or could it be done more efficiently?

Thanks in advance.

share|improve this question

4 Answers

up vote 1 down vote accepted

You can use an NSDictionary's writeToFile method, or, if you want an array (or an array of dictionarys), use NSArray's writeToFile method.

share|improve this answer
re-posting as an answer for code clarity. :) – Helium3 Jun 30 '10 at 19:17

I am still not sure how to do this. I have tried this

NSString *filepath = [[NSBundle mainBundle] 
                    pathForResource:@"tableViewData" ofType:@"plist"];
NSArray* plistArray = [[NSArray alloc] initWithContentsOfFile:filepath];

[plistArray setValue:(@"%@",title) forKey:@"Item 0"];
[plistArray writeToFile:filepath atomically: YES];

The app crashes after trying to execute this.

error message

Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key Item 0.'

share|improve this answer
I'm not sure how you have your plist set up, but think of the key like this... Key: Animal , Value: Dog ... Key: Animal Name , Value: Pluto ..Item 0 is just your first item in an array most likely. The key is nested one level under that (again, I'm only guessing without knowing how you set it up) – iWasRobbed Jul 1 '10 at 2:56
is it possible to delete an entry in plist?if yes how. – SRS Sep 21 '12 at 4:47

According to your second question, I think your app crash because Array use a numeric key and can't use NSString as key. If you need a key->value structure you have to use NSDictionary

share|improve this answer

I think what you are trying to use is

NSDictionary* plistArray = [[NSDictionary alloc] initWithContentsOfFile:filepath];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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