I have a document based application which saves files as documents with the extension of my choosing for my app (right now it is .aw). However, I would like to be able to save files as .txt (tab-delimited). Does anyone have any suggestions about how I should approach this. The stuff I want to save is a bunch of strings, which I can easily enough put into an NSMutableDictionary separated by tabs. Do all I need to do is add a .txt file extension?
TIA.