Uploaded video

I work in an application where I need to send a recorded video. I do not get any solution.

Can I do with the share package?

Thanks in advance

+6
source share
1 answer

See the tutorial http://omnomrobot.com/tutorials/sourcetutorials/mfmailcompose/

In this tutorial, replace lines 28 and 30 with

NSData *imageData = [NSData datawithContentsOfFile:[[NSBundle MainBundle]pathForResource:@"video" ofType:@"mp4"]]; [mailer addAttachmentData:imageData mimeType:@"video/mp4" fileName:@"video.mp4"]; 

Change the video format to the appropriate format.

+4
source

Source: https://habr.com/ru/post/907092/


All Articles