What's the best way to store error messages (specially while developing with Xcode and Objective-C for Mac and iPhone):
- Creating a separate class that contains list of error code and corresponding messages
- .plist of error code and corresponding messages
- Localizable.string file with error code and corresponding messages (the application may or may not support localization)
- Other(s)
I'm sure i don't have to give a reason why anyone would want to keep all the error messages in one location. Thanks.