将视频文件添加到iphone模拟器路径,但不在模拟器中显示

时间:2013-07-08 09:29:17

标签: iphone ios6

我正在将视频文件添加到iphone模拟器路径,但它没有在库中显示视频文件。如何将视频文件添加到模拟器中请指导。

以下是从图库中挑选视频的代码。

-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
NSString* mediaType = [info objectForKey:UIImagePickerControllerMediaType];
if ( [mediaType isEqualToString:@"public.movie" ])
{
   // NSLog(@"Picked a movie at URL %@",  [info objectForKey:UIImagePickerControllerMediaURL]);
   // NSURL *url =  [info objectForKey:UIImagePickerControllerMediaURL];
   // NSLog(@"> %@", [url absoluteString]);

    if (CFStringCompare ((__bridge CFStringRef) mediaType, kUTTypeMovie, 0)
        == kCFCompareEqualTo)
    {

        //NSString *moviePath = [[info objectForKey:UIImagePickerControllerMediaURL] path];

        // NSLog(@"%@",moviePath);

        NSURL *videoUrl=(NSURL*)[info objectForKey:UIImagePickerControllerMediaURL];
        NSData *webData = [NSData dataWithContentsOfURL:videoUrl];
        [self post:webData];

        if([profile isEqualToString:@"friend"])
        {
            [self callServerFriend];
        }
        if([profile isEqualToString:@"public"])
        {
            [self callServerPublic];
        }
    }
}
}

1 个答案:

答案 0 :(得分:4)

按照以下步骤操作:

1)在模拟器上拖动视频。
2)然后它在safari上播放视频。
3)现在点击完成按钮。
4)然后单击MoveTo Button。

enter image description here

5)并且最后只需点击saveToCameraroll。

enter image description here

现在视频可以在您的模拟器照片库中找到。