フォト ライブラリからドキュメント ディレクトリにビデオを保存しました。今、ドキュメント ディレクトリに保存されているすべてのビデオを表示したい..しかし、どのようにそれが可能かわかりませんか??? 実際には、すべてのビデオをフォトライブラリで開いているように表示したい(1行に4つのビデオ)..そして、ビデオをクリックすると...ビデオの再生が開始されます...
ドキュメントディレクトリからViewControllerにすべてのビデオを表示する最良の方法は誰でも助けてくれますか....ありがとう......
- (void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
NSURL * movieURL = [info valueForKey:UIImagePickerControllerMediaURL] ;
NSData * movieData = [NSData dataWithContentsOfURL:movieURL];
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [documentPaths objectAtIndex:0];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[[self imageNameTextField]text]];
fullPath = [fullPath stringByAppendingFormat:@".MOV"];
[ movieData writeToFile:fullPath atomically:YES];
}