Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

You tube videos are not Playing in iOS6

Tags:

youtube

ios6

I am using iOS6 beta youtube videos which are not playing in my app in this version.

How can I fix this issue?

like image 680
Adams Avatar asked Nov 14 '22 02:11

Adams


1 Answers

Please write the way you add youtube video. Because the only thing a had read is that the Youtube app is no longer in iOS6, but it must keep working. Anyway try with

NSString* embeddedCode = @"embed code of the youtube video"
UIWebView* videoView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)]; 
[videoView loadHTMLString:embeddedCode baseURL:nil];
[self.window addSubview:videoView];

Hope it works, but in case it doesn't just comment and I can try another thing.

like image 168
Xoltic Avatar answered Dec 09 '22 12:12

Xoltic