Tomer Ciucran
Tomer Ciucran

Reputation: 199

Facebook, twitter and mail share without UIActivityViewController on iOS

I want my app users to be able to share stuff on facebook, twitter and mail but I do not want to show the UIActivityViewController.. So I want to have seperate buttons for different share types (fb, twitter, mail) instead of just one share button, and show directly the share dialog. Is there a way of doing this?

Thank you..

Upvotes: 1

Views: 284

Answers (1)

hmdeep
hmdeep

Reputation: 2930

yes there are different way to do it.there is build in framework for it...

SLComposeViewController /// for facebook and twitter

and

MFMailComposeViewController /// for Email

check this link here for facebook and twitter

and for sharing with Email check here

Upvotes: 2

Related Questions