質問

PLEASE! This has been driving me crazy for hours. I know its possible to share video to Facebook,twitter ... through UIActivityViewController. PLEASE somebody tell me how to do it!!

役に立ちましたか?

解決

Simply use the ALAsset object and pass it in:

ALAsset * asset = [[ALAsset alloc] init];
[asset setVideoAtPath:urlToVideoFile completionBlock:NULL];
NSArray * activityItems = @[asset];
UIActivityViewController * activityController = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:NULL];
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top