TagUIWebView

Play YouTube video using UIWebView on iPhone

P

Hi, Sometimes it gets very difficult to find a way to do simple things. Playing videos on iPhone is a simple thing, using UIWebView. Just need to embed the URL to HTML tags, and then load the HTML in UIWebView. Here is the code to do so. Pass you URL of YouTube Video in “urlStr”. //In .h file UIWebView *videoView; // In .m file videoView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320...

Category