Quiero reproducir un video de Youtube en mi aplicación. Entonces, escribí el siguiente códigoiOS - UIWebView no funciona debido a un error de análisis
NSString *embedHTML = @"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: white;\
}\
</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, videoURL, self.view.frame.size.width, self.view.frame.size.height];
[videoView loadHTMLString:html baseURL:nil];
El videoView es un UIWebView. Esto funcionó bien hasta más tarde, la vista no muestra nada. Solo una vista blanca en blanco. Y tengo este registro:
*** WebKit discarding exception: <NSRangeException> *** -[__NSCFString substringToIndex:]: Range or index out of bounds
que tienen el mismo problema utilizando XCode 4.5, iOS 6.0 –
Sí. Ese también es mi caso, Xcode 4.5 e iOS 6. Estoy descargando el GM y espero que sea un problema beta –