使用Facebook 的 SDK非常简单。
您需要在 Facebook 中设置一个应用程序以链接到您的手机应用程序,在那里您可以使用您的图标和链接。
NSMutableDictionary *postParams = @{ @"message" : <#Your Message#>,
@"app_id" : <#Your AppId#>,
@"picture" : <#Your Image#>,
@"link" : <#Your App Link#>,
@"name" : <#Your App Name#>,
@"caption" : <#Your Caption#>,
@"description" : <#Your Description#>
};
[FBWebDialogs presentFeedDialogModallyWithSession:self.session parameters:postParams handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {
<#Your Completion handler#>}