当前位置: 代码迷 >> Iphone >> 向iPhone模拟器中平添视频
  详细解决方案

向iPhone模拟器中平添视频

热度:113   发布时间:2016-04-25 06:35:41.0
向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];

}

  相关解决方案