Search code examples
iphoneiosobjective-cipadgamekit

How to export file from your app to others mobile app?


I want to put sharing feature in my application so that i can share file created in my app to app on others mobile. Please if anybody has any idea or code let me know....:-)


Solution

  • Some of the ways I can think of -

    1. Send your file as mail attachement as @Akshay points out.
    2. Use Gamekit framework in iOS to transfer data between iOS devices without internet.
    3. You could use Bluetooth, but essentially I think GameKit uses that. so you might as well go with gamekit instead of (re)defining your own protocol...

    Happy coding...