Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have a UIView and have a UIWebView in it.
On UIWebView i display Youtube Video and it can be played.

The Orientation of UIView is set to Portrait but when the youtube Video is played in full screen and we change the Orientation.
It Also changes the Orientation of the View.

But i dont want to change the Orientation of the UIView and also the Video to Landscape.
I Only want the orientation as Portrait.

Also the orientation of the UIView is set to the Portrait.


C#
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return NO;
}




I have searched it but no results....

Regards.
Posted
Updated 1-Jul-12 21:42pm
v7

1 solution

Try returning:
interfaceOrientation == UIInterfaceOrientationPortrait

instead of
return No
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900