4

FBDialogs を使用して画像を Facebook に投稿すると、Facebook は壁に「iOS 経由」と表示されます。Facebook SDK 3.5 を使用して、「iOS 経由」を「マイ アプリ名経由」に変更するにはどうすればよいですか?

[FBDialogs presentOSIntegratedShareDialogModallyFrom:self
                                             session:[FBSession activeSession]
                                         initialText:@"ABC"
                                              images:image
                                                urls:nil
                                             handler:^(FBOSIntegratedShareDialogResult result, NSError *error) {
                                             }];
4

1 に答える 1

0

SDK の最新バージョンではpresentShareDialogWithPhotoParams、イメージの共有に使用できます。以下の例を参照してください。

FBShareDialogPhotoParams *photoParams = [FBShareDialogPhotoParams new];
UIImage *screenshot = // Your image...
photoParams.photos = @[screenshot];
[FBDialogs presentShareDialogWithPhotoParams:photoParams
                                 clientState:nil
                                     handler:^(FBAppCall *call, NSDictionary *results, NSError *error) {

                                     }];
于 2014-05-01T06:14:06.020 に答える