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 sharing message in Facebook by integrating sharekit in my iPhone application.I have written the method facebookButtonPressed which I am calling on tapping one button. First time when facebook screen is appearing its asking for authentication in Facebook . I have given userid and password of my Facebook existing account and tapped for login. Now the facebook authentication screen disappeared.Now again I tapped the button to call the methoed facebookButtonPressed,then I got the message sharing screen. I don't want to tap twice to get the message sharing screen.If any one has already solved this issue please help me.

-(void)facebookButtonPressed{
    NSString* body = @"test body";
    SHKSharer *fb = [[SHKFacebook alloc] init];
    SHKItem *item = [[SHKItem alloc] init];
    item.shareType = SHKShareTypeText;
    item.text = [body length]>140?[body substringToIndex:139]:body;
    fb.item = item;
    if(![fb isAuthorized])
    [fb authorize];
    [fb tryToSend];
}
share|improve this question

2 Answers

up vote 9 down vote accepted

Try the below code, there will be action sheet to select how to share,you need to select Facebook.

NSString* body = @"test body";
SHKItem *item = [SHKItem text:body];
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item]; 
[actionSheet showFromToolbar:self.navigationController.toolbar];
share|improve this answer

Try to put the following:

item.shareType = SHKShareTypeText;
item.text = [body length]>140?[body substringToIndex:139]:body;
fb.item = item;

behind [fb tryToSend];

So that you first check whether fb is authorized and then share. Hope it helps.

share|improve this answer
I tried this solution, but no luck. – user97693321 Sep 27 '11 at 15:02
So you needed to tap twice? Or did you get an error message? – Urban Seifert Sep 29 '11 at 12:25

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.