IOS sdk6.0 horizontal screen rotation settings (compatible with sdk6.0 and earlier versions)

Source: Internet
Author: User
Enable Automatic horizontal screen instances after startup (compatible with sdk6.0 or lower ):

1. Proxy Modification

-(Bool) Application :( uiapplication *) Application didfinishlaunchingwitexceptions :( nsdictionary *) launchoptions {If ([[uidevice currentdevice]. systemversion floatvalue] <6.0) {[[uiapplication sharedapplication] setstatusbarorientation: uiinterfaceorientationlandscapeleft animated: No];} self. window = [[uiwindow alloc] initwithframe: [uiscreen mainscreen]. bounds]; If (nil = self. bootviewcontroller) {self. bootviewcontroller = [[bootviewcontroller alloc] init];} // sets the display method. Other Sub-control views to be added are the same as if ([uidevice currentdevice]. systemversion floatvalue] <6.0) {[self. window addsubview: Self. bootviewcontroller. view];} else {[self. window setrootviewcontroller: Self. bootviewcontroller];} [self. window makekeyandvisible];}

2. The sub-controller achieves horizontal screen Rotation

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {if (interfaceOrientation == UIInterfaceOrientationLandscapeLeft) {return YES;}return NO;}-(BOOL)shouldAutorotate{    return YES;}-(NSUInteger)supportedInterfaceOrientations{    return UIInterfaceOrientationMaskLandscapeLeft;}

// Other implementations To be continued ....

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.