Reputation: 21
hi can any one describe me sample code for how to save a video using save button in cocoa. i have stop and start button. i need one save button to save the video.
Upvotes: 0
Views: 139
Reputation: 431
You will need this one.... http://servin.com/iphone/iPhone-File-IO.html
and also this code will save your video...
[[NSFileManager defaultManager] createFileAtPath:yourfilePath contents:yourVideo attributes:nil];
Upvotes: 1