对于新的Facebook SDK 4.x (4.1) for iOS
,框架进行了新的更改。它包括3个不同的框架,例如
要共享任何图像,我使用了
FBSDKSharePhoto
类。但是有方法[FBSDKSharePhoto photoWithImage:(*UIImage) userGenerated:(BOOL)]
我想添加标题与图像作为字符串和文本。任何人都可以帮助我,以便我可以使用FB的新sdk发布图像的标题。
提前致谢。
最佳答案
将标题字符串分配给标题键值
@property(非原子,复制)NSString * caption;
尝试这个 :
FBSDKSharePhoto *photo = [[FBSDKSharePhoto alloc] init];
photo.image = image;
photo.userGenerated = YES;
photo.caption = @"Add Your caption";
FBSDKSharePhotoContent *content = [[FBSDKSharePhotoContent alloc] init];
content.photos = @[photo];
[FBSDKShareDialog showFromViewController:self
withContent:content
delegate:nil];
关于ios - 使用iOS的FBSDK 4.x在Facebook上发布图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30317934/