向iPhone模拟器中添加视频

来源:互联网 发布:怎么和淘宝客服聊天 编辑:程序博客网 时间:2024/04/30 12:51

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

if(UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(path)){

UISaveVideoAtPathToSavedPhotosAlbum(path,nil,nil,nil);

}else {

//NSLog(@"no available");

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

[alert show];

[alert release];

}

原创粉丝点击