I was wondering what is a good way to create share buttons in iOS, and by share buttons I mean these 3 kinds of buttons: 1- Follow me on Twitter 2- Like a page on Facebook 3- Send a mail (Optional) I have heard about sharekit but I am interested in just creating these 3 buttons that will be found on the back of the page of the app.
|
|
Posting data to social services is much more complicated than just setting up a button. You must register your application, choose user, authenticate, then communicate via the internet. ShareKit does most of that for you. You may not just 'create share button' and have it share data to fb or twitter. |
|||
|
|
You can use something like:
which will open Mobile Safari and let you follow that user. You may be required to log in. I guess there is a similar URL for Facebook. To send a mail from within your app, use the MessageUI Framework. |
|||
|
|
|
Posting to those service is complicated because you'll have to create Apps on those social networks as well as handle the oauth handshake the occurs which allows your app to share on behalf of the user. The Socialize SDK (www.getsocialize.com) is the fastest way to get Facebook/Twitter authentication without coding it yourself. Sample code below:
|
|||
|
|
|
You could use ShareKit 2.0 https://github.com/ShareKit/ShareKit I believe it supports sharing on most common social networks. |
|||
|
|