Export Core Data Entity as text files in Cocoa
I have an entity in core data that has 2 Attributes. One that is a string called "name", and another one that is a string called "message". I need a method to create text files for all the attributes that the user has added. I wan't the files names to be the name attribute and the contents to be the message attribute. If anyone knows how to do this any help would be great. Thanks for any help Joshua Nozzi Have you given any thought at all to the steps involved? Create a fetch request (possibly with a predicate if you want to filter the results). Execute the fetch request. If successful ... For