I donβt understand what you are asking or where you have problems, but here is how I do it:
-(IBAction)connectButton {
SHKItem *item;
NSURL *url = [NSURL URLWithString:@"put the link to the itunes store for your app here"];
NSString *postString = @"I just played a game of some game!;
item = [SHKItem URL:url title:[NSString stringWithFormat:@"I'm playing some game! Want to play too?"];
item = [SHKItem URL:url title:@"Share Me!"];
// Share the item
[SHKFacebook shareItem:item];
}
Sorry, I'm having formatting issues. also make sure you import SHKFacebook.hinto your class file.
This will open the Facebook dialog using a button in your application.
source
share