【发布时间】:2015-06-05 20:17:26
【问题描述】:
我注意到您可以简单地将 NSData 视频分享到 facebook messenger:
NSData *videoData = [NSData dataWithContentsOfURL:localVideoUrl];
[FBSDKMessengerSharer shareVideo:videoData withOptions:options];
但我在分享到 Facebook 提要时遇到了困难 使用本地视频文件或 phasset。
FBSDKShareVideo *video = [FBSDKShareVideo videoWithVideoURL:localVideoUrl];
FBSDKShareVideoContent *content = [[FBSDKShareVideoContent alloc] init];
[content setVideo: video];
[FBSDKShareDialog showFromViewController:nil withContent:content delegate:self];
com.facebook.sdk:FBSDKErrorDeveloperMessageKey=本机对话框只允许使用资产文件 URL
如何使用 phasset 视频获得类似的良好应用切换行为?
谢谢!
【问题讨论】: