有人知道参数吗?
解决方法 您应该使用FBSDKShareKit通过messenger发送内容.导入FBSDKShareKit
#import <FBSDKShareKit.h>
创建内容和分享
FBSDKSharelinkContent *content = [[FBSDKSharelinkContent alloc] init];content.contentURL = [NSURL URLWithString:@"http://www.url.com"];content.contentTitle = @"My link!";content.contentDescription = @"Check out my link!";[FBSDKMessageDialog showWithContent:content delegate:self];
您还需要将控制器符合FBSDKSharingDelegate
#pragma mark - FBSDKSharingDelegate- (voID)sharer:(ID<FBSDKSharing>)sharer dIDCompleteWithResults:(NSDictionary *)results {}- (voID)sharer:(ID<FBSDKSharing>)sharer dIDFailWithError:(NSError *)error {}- (voID)sharerDIDCancel:(ID<FBSDKSharing>)sharer {}
可用内容如下:
> FBSDKSharelinkContent> FBSDKSharePhotoContent> FBSDKShareVIDeoContent
总结以上是内存溢出为你收集整理的ios – Facebook Messenger撰写预定义消息全部内容,希望文章能够帮你解决ios – Facebook Messenger撰写预定义消息所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)