문제

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