Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am playing a YouTube video in iPad using webview. But on orientation change I am changing the size of the webview and using JavaScript I have changed the size of embedd player in the HTML. But sometimes the player controls are hiding while doing this. How can i resolve this issue?

I have tried the following code:

NSString *str=@"document.getElementById('v').width =600;document.getElementById('v').height = 600;";
[webview stringByEvaluatingJavaScriptFromString:str];
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.