I have implemented an app in iPhone, (Objective-c)
in that i have used SQLITE
for data base.
Now i need to share the data.
Share Data:
Any useful replies, thanks in advance
You might have seen some apps open the pdf files from the mail box, because those apps registers themselves to handle the .pdf files. So iOS shows he list of available apps who registered to open the pdf files, so that user can select any one of the app to view the attached file.
Similarly you can create your own file extension and register in the info.plist file, so that in the mail when tap on the attachment it provides an option to open in your application.
Raywenderlich has given a very good tutorial for this.
How To Import and Export App Data Via Email in your iOS App
Have a look at it, will surly help you.