iOS 強制橫屏

來源:互聯網
上載者:User

標籤:

////  AAAAViewController.m//  hengp////  Created by 朱信磊 on 15/2/13.//  Copyright (c) 2015年 niit. All rights reserved.//#import "AAAAViewController.h"#import "AppDelegate.h"@interface AAAAViewController ()@end@implementation AAAAViewController- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];    if (self) {        [self initView];    }    return self;}-(void)initView{    UIButton *bt=[[UIButton alloc]initWithFrame:CGRectMake(100, 100, 100, 80)];    [bt setTitle:@"返回" forState:UIControlStateNormal];    [bt setBackgroundColor:[UIColor blueColor]];    [bt addTarget:self action:@selector(back) forControlEvents:UIControlEventTouchUpInside];    [self.view addSubview:bt];                AppDelegate *appdelegate=[[UIApplication sharedApplication] delegate];    [[UIApplication sharedApplication] setStatusBarOrientation:UIDeviceOrientationLandscapeRight animated:YES];    CGFloat duration = [UIApplication sharedApplication].statusBarOrientationAnimationDuration;    //設定旋轉動畫    [UIView beginAnimations:nil context:nil];    [UIView setAnimationDuration:duration];    //設定導覽列旋轉    appdelegate.nav.navigationBar.frame = CGRectMake(-204, 224, 480, 32);    appdelegate.nav.navigationBar.transform = CGAffineTransformMakeRotation(M_PI*1.5);    //設定視圖旋轉    self.view.bounds = CGRectMake(0, -54, self.view.frame.size.width, self.view.frame.size.height);    self.view.transform = CGAffineTransformMakeRotation(M_PI*1.5);     [self setNeedsStatusBarAppearanceUpdate];    [UIView commitAnimations];        }- (UIStatusBarStyle)preferredStatusBarStyle{    return UIStatusBarStyleLightContent;}//- (BOOL)prefersStatusBarHidden//for iOS7.0{    return YES;}- (void)viewDidLoad {    [super viewDidLoad];    [self.view setBackgroundColor:[UIColor whiteColor]];    }- (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.}-(void)back{     AppDelegate *appdelegate=[[UIApplication sharedApplication] delegate];    [appdelegate.nav popViewControllerAnimated:YES];}/*#pragma mark - Navigation// In a storyboard-based application, you will often want to do a little preparation before navigation- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {    // Get the new view controller using [segue destinationViewController].    // Pass the selected object to the new view controller.}*/@end

 

iOS 強制橫屏

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.