我正在使用https://github.com/facebook/facebook-ios-sdk
中的最新Facebook SDK并尝试使用Feed对话框发布到墙上,标题不在对话框中。
它遗漏了一些字,所以我无法阅读整个标题,如下:
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];