我怎么能把YouTube-video列入一个<编码>可调用的ViewCell,我如何处理<代码>。 Done -button of the UIWebView
, 开放录像?
我把录像带入了一种观点,但就像图像一样。 并且我希望这一条码。 Done-button in this culture:
我想在我再谈一下看法时,不要再开一个屏幕。
-(void)viewDidLoad {
[super viewDidLoad];
videoURL = [[NSString alloc]init];
videoURL =@"http://www.youtube.com/watch?v=aE2b75FFZPI";
[self embedYouTube:videoURL frame:CGRectMake(10, 85, 300, 180)];
}
- (void)embedYouTube:(NSString*)url frame:(CGRect)frame {
NSString* embedHTML = @" <html><head> <style type="text/css"> body { background-color: transparent; color: red; } </style> </head><body style="margin:0"> <embed id="yt" src="%@" type="application/x-shockwave-flash" width="%0.0f" height="%0.0f"></embed> </body></html>";
NSString* html = [NSString stringWithFormat:embedHTML, url, frame.size.width, frame.size.height];
if (videoView == nil) {
videoView = [[UIWebView alloc] initWithFrame:frame];
[self.view addSubview:videoView];
NSLog(@"html%@",html);
}
[videoView loadHTMLString:html baseURL:nil];
}
在这方面,我需要一些帮助。 我进行了搜查,但我拿不出任何东西。