In my iPhone app, I have two two buttons, labeled \"Facebook\" and \"Twitter\". I want to use the Sharekit framework which makes my sharing very simple. But as shown in the
Sharekit provides a generic sharing mechanism but also exposes individual services. For instance, if you were to share a URL on twitter, you could write the following code:
#import "ShareKit/Core/SHK.h"
#import "ShareKit/Sharers/Services/Twitter/SHKTwitter.h"
...
SHKItem *item = [SHKItem URL:url title:@"A title"];
[SHKTwitter shareItem:item];
This is all explained in the documentation, but don't fear exploring the header files of the individual services.