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.

For my universal application, I want to keep some settings shared by diferent controllers out of my code, like font names, colors, row height information. What is the best way to do that in IOS? plist,a separete xml file, a txt file?

Tnx

share|improve this question

2 Answers

up vote 1 down vote accepted

You could create som kind on settings class which you can easily write to a plist file using NSCoding.

If you make this class a singleton you then don't need to load the plist file in all the controllers. Use the create SynthesizeSingleton.h from cocoawithlove.

share|improve this answer
tnx and how and where can I define shared images – Spring Aug 2 '11 at 10:55

plist file. And, also have the settings class as singleton class.

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.