¿Cómo puedo obtener un YouTube video en un UITableViewCell
, y cómo puedo manejar la Done
-botón del UIWebView
la reproducción del vídeo?cómo obtener el vídeo en youtube tableview y obtener el problema con la gestión "Hecho" incrustado botón
He incrustado el video en una vista, pero me gusta en la imagen. Y quiero que esto Done
-botón en esta imagen:
quiero abrir otra pantalla cuando regrese a la vista, no la vista anterior.
-(void)viewDidLoad {
[super viewDidLoad];
videoURL = [[NSString alloc]init];
videoURL [email protected]"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];
}
Necesito ayuda con esto. Hice una búsqueda, pero no obtuve nada.
¿Te entendí correctamente? ¿Quieres que las celdas de tu mesa representen cada video de youtube? ¿pantalla completa? ¿por qué quieres hacer eso? –
He terminado con la tabla y quiero saber cómo manejar el botón de youtube video done? – Harish
¿No aparece el botón Listo? ¿O simplemente no responde? ¿Has probado las notificaciones del botón Listo? http://stackoverflow.com/a/8228490/894671 –