2015-10-08 36 views
-1

在開發的應用程序中,我們在Facebook中共享應用程序的某些功能時遇到問題。我們打算分享的默認文本似乎沒有出現。但是,當Facebook應用程序共享圖像時,不存在任何問題。默認文本在iPhone 5的facebook分享中丟失

我們實施了Facebook集成,但事情並沒有給我們預期的結果。有關更多詳情,請參閱附加圖像。

enter image description here

回答

0

可以使用FBSDKShareLinkContent與FBSDKSHAREKIT

FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init]; 
content.contentTitle = // HERE YOUR TEXT TITLE 
content.contentDescription = // HERE YOUR TEXT/DESCRIPTION; 
content.imageURL = // YOUR IMAGE URL; 
[FBSDKShareDialog showFromViewController:(UIViewController *)self.delegate 
          withContent:content 
           delegate:self];