Facebook Twitter Github Freelancer
    iOS6 Force Orientation

    iOS6 has deprecated shouldAutorotateToInterfaceOrientation so now you need to use (together) shouldAutorotate {return YES;} and supportedInterfaceOrientations. You will need to return a UIInterfaceOrientationMask from the supportedInterfaceOrientations.

    Get Current iOS Device Orientation

    [[UIDevice currentDevice] orientation]