tags:

views:

19

answers:

1

I'm diving into iOS development am building a simple Diary app. I'd like to be able to export my data somehow to my other computers. What are some common, simple ways to export plain textual data?

Thanks in advance for all your help!

+1  A: 

A few options spring to mind.

  • Give the option to email it
  • Utilise 3.2/4.0's file sharing APIs to allow access to documents created within the app via iTunes
  • Upload to a webservice

I'm sure there are more, but that's what I immediately thought of.

Jasarien