I forbid whole app orientation to landscape. But I want to allow only one view controller --- MPMoviePlayerController auto rotate, I knew I can rotate view manually, but the status bar still in portrait.
I've set info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
</plist>
I don't want the entire app can auto orientation.
So my problem is:
Whether I can just allow this view auto orientation landscape (I've already forbidden app orientation to landscape).
If 1 is NO, then, is there anyway to set status bar to landscape mode?
thanks