Thursday 16 May 2013

How to play YouTube video on UIWebview in iOS Apps?

Hi All,

How to play a video on UIWebview in iOS Apps?

Sol:


NSString *htmlString = @"<body><iframe width=\"200\" height=\"150\" src=\"http://www.youtube.com/embed/zXf1zyKQ5Hw\" frameborder=\"0\" allowfullscreen></iframe></body>";      
   
/* passing the html string of corresponding video link from Youtube.*/

webView.delegate = self;
webView.opaque = YES;  /*(Yes Or No)*/ 
[webView loadHTMLString:htmlString baseURL:nil];
[self.view addSubView:
webView
];

Thanks & Regards,
R.Anusha

No comments:

Post a Comment