Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the latest Sharekit2.0 on a project.

Two buttons are listed ("Get votes on Facebook" and "Share on twitter") as attached, so I don't need a UIActionSheet to prompt. How can I directly share text information to facebook and twitter respectively.

Thanks

share|improve this question
what have you tried yet? – toxicate20 Dec 2 '12 at 13:11

2 Answers

up vote 0 down vote accepted

could you please try the following:

#import "SHK.h"
#import "SHKFacebook.h"
#import "SHKTwitter.h"

then for facebook

-(IBAction)forFacebook:(id)sender;{
    NSString *someText = @"This is a blurb of text I highlighted from a document.";
    SHKItem *item = [SHKItem text:someText];  

    [SHKFacebook shareItem:item];    

}

for twitter

-(IBAction)forTwitter:(id)sender;{
    NSString *someText = @"This is a blurb of text I highlighted from a document.";
    SHKItem *item = [SHKItem text:someText];  

    [SHKTwitter shareItem:item];    

}

please give me a feedback, thanks.

share|improve this answer
Thanks, it's working perfect now following your suggestions – Kuang Yuang Dec 2 '12 at 11:11
could you please accept my answer :), thanks – piam Dec 2 '12 at 11:30
piam. I just found an exception when I execute on iPhone4S (iOS6), the execution message is shown(stackoverflow.com/questions/13716185/…). How can I fix it? I'm sure it OK on simulator with iOS4、5、6 – Kuang Yuang Dec 5 '12 at 4:55

Another Way:

#import "SHK.h"

-(IBAction)forSharing:(id)sender{

    NSString *someText = @"This is a blurb of text I highlighted from a document.";
    SHKItem *item = [SHKItem text:someText]; 

    SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item]; 

    [actionSheet showFromToolbar:navigationController.toolbar];   

}

But you need to change the function favoriteSharersForType in shk.m to show only twitter and facebook options.

if (favoriteSharers == nil)
    {
        switch (type) 
        {
            case SHKShareTypeURL:
                favoriteSharers = SHKCONFIG(defaultFavoriteURLSharers);
                break;

            case SHKShareTypeImage:
                favoriteSharers = SHKCONFIG(defaultFavoriteImageSharers);
                break;

            case SHKShareTypeText:
                favoriteSharers = SHKCONFIG(defaultFavoriteTextSharers);
                break;

            case SHKShareTypeFile:
                favoriteSharers = SHKCONFIG(defaultFavoriteFileSharers);
                break;

            default:
                favoriteSharers = [NSArray array];
        }

        // Save defaults to prefs
        [self setFavorites:favoriteSharers forType:type];
    }

and change the variable defaultFavoriteURLSharers in DefaultSHKConfigurator.m to show only facebook and twitter like this:

- (NSArray*)defaultFavoriteURLSharers {
    return [NSArray arrayWithObjects:@"SHKFacebook",@"SHKTwitter", nil];
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.