向iPhone模拟器中添加视频

来源:互联网 发布:勒索软件的特点 编辑:程序博客网 时间:2024/04/30 15:39

NSString *path=[[NSBundle mainBundlepathForResource:@"视频名称" ofType:@"mp4"];

if(UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(path)){

UISaveVideoAtPathToSavedPhotosAlbum(path,nil,nil,nil);

}else {

//NSLog(@"no available");

UIAlertView *alert=[[UIAlertView allocinitWithTitle:nil message:@"no available"delegate:self cancelButtonTitle:nil otherButtonTitles:nil];

[alert show];

[alert release];

}

原创粉丝点击