首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Iphone >

向iPhone模拟器中平添视频

2012-06-30 
向iPhone模拟器中添加视频NSString?*path[[NSBundle?mainBundle]?pathForResource:@视频名称?ofType:@

向iPhone模拟器中添加视频

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];

}

热点排行