您的位置:首页 > 移动开发

iOS 土豆视频播放,UIwebview播放视频

2013-09-14 16:18 204 查看
#define Html5PlayVideoUrl @"http://www.tudou.com/programs/view/html5embed.action?code="

_webView = [[UIWebView
alloc] initWithFrame:CGRectMake(0,
40,
320, 460)];

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

// NSLog(@"%@",[self.ItemCode objectAtIndex:indexPath.row]);

[_webView
loadRequest:[NSURLRequest
requestWithURL:[NSURL
URLWithString:[NSString
stringWithFormat:@"%@%@",Html5PlayVideoUrl,self.ItemCode]]]];
[self.view
addSubview:_webView];

_webView.scalesPageToFit =YES;

_webView.delegate =
self;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: