我正在从旧的 sharekit 升级到最新的 Sharekit2.0。
最终我需要在 Facebookshare 上实现这一点:https ://s3-ap-southeast-1.amazonaws.com/eight29/demo.png
在旧的 sharekit 中,我可以通过 dialog.attachment (FBStreamDialog) 来做到这一点,如下所示。但是,在最新版本中,缺少此功能。
BStreamDialog* dialog = [[[FBStreamDialog alloc] init] autorelease];
dialog.delegate = self;
dialog.userMessagePrompt = @"Post Item to Facebook";
dialog.attachment = [NSString stringWithFormat:@"{\"name\":\"example\",\"href\":\"http://apps.facebook.com/example/?%d\",\
怎么可能做到?
谢谢!
梁