Arvind
Arvind

Reputation: 21

how to save a video in cocoa

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

Answers (1)

zayar
zayar

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

Related Questions