我正在使用来自https://github.com/facebook/facebook-ios-sdk的最新 Facebook SDK
并尝试使用提要对话框发布到墙上,标题不在对话框框架内。
它缺少一些单词,所以我无法阅读整个标题,如下所示:
http://www.freeimagehosting.net/66oyf(抱歉,由于我的声誉太低,我无法在堆栈溢出时发布图像。)
这是代码:
NSMutableDictionary *param = [NSMutableDictionary dictionaryWithObjectsAndKeys:
[Utility getFBIconUrlHref], @"link",
[Utility getFBIconUrlSrc], @"picture",
name, @"name",
_bookName, @"caption",
@"description" , @"description", nil];
[_fb dialog: @"feed"
andParams: param
andDelegate:self];