I have added MPMoviePlayerController in my view. and its working fine. and when I switch to this in full screen and change the orientation of device then no orientation change event is fired. so please can let me know how I solve this issue.
Thanks
I have added MPMoviePlayerController in my view. and its working fine. and when I switch to this in full screen and change the orientation of device then no orientation change event is fired. so please can let me know how I solve this issue.
Thanks
I suppose you present MPMoviePlayerController
modally so check out the -
(void)shouldAutorotateToInterfaceOrientation:
method of your main app controller. I suppose that if you return TRUE just for portrait the modal controller can't rotate itself. Try to return TRUE for all interface orientation on your rootViewController
and the MPMoviePlayerController
should start to rotate.