Hi,
I am developing iPad application,
- A set of forms that user has to fill (roughly 500 text fields).
- The form fields are displayed in a UITable view.
- Once user fill the forms he/she can uploaded the data to the server.
- Until its uploaded, the data should be persist in a temporary location in the local disk.
In my application design, I am using NSMutableDictionery, which is always being updated when the user updating the forms.
What is the best way to keep save NSMutableDictionery in the local disk. SQL Lite or PList ?
/chatcja