iPhone開發筆記(21)iOS 6旋轉問題解決方案匯總

來源:互聯網
上載者:User

    iOS 6的SDK改變了以往控制UIViewController的方式,為了相容iOS 5和iOS 6,需要對代碼進行必要的調整。因為每個應用的結構不一樣,所以再這篇文章中,我只講了我所遇到的UITabBarController+UINavigationController的應用結構。此外,我也在最後列出了一些情況的解決方案,如果本文的方法對你遇到的問題不起作用,那麼可以試試列出的串連給出的解決方案。

    1、在工程的設定介面將裝置支援的旋轉方向開關開啟如:

    

    2、設定window的rootViewController

    在AppDelegate.h中

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{    ......    self.window.rootViewController = tabBarController;    self.window.backgroundColor = [UIColor whiteColor];    [self.window makeKeyAndVisible];        return YES;}

    3、添加UITabBarController的Category

@implementation UITabBarController (Background)-(BOOL)shouldAutorotate{    //這裡我是首先從全域的角度設定自動旋轉為NO,因為不需要每個UIViewController都自動旋轉。    return NO;}- (NSUInteger)supportedInterfaceOrientations {    //全域設定為    return UIInterfaceOrientationMaskPortrait;}@end@implementation AppDelegate

    4、在需要開啟自動旋轉的UIViewController的.m檔案中添加如下代碼

//iOS 5以前的旋轉控制方法- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {        return ((interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown) &&                (interfaceOrientation != UIInterfaceOrientationLandscapeLeft) &&                (interfaceOrientation != UIInterfaceOrientationLandscapeRight));    } else {        return YES;    }}/iOS 6的旋轉控制方法- (BOOL)shouldAutorotate{    return YES;}-(NSUInteger)supportedInterfaceOrientations{    return UIInterfaceOrientationMaskAllButUpsideDown;}

    5、其他情況的解決方案參考

http://stackoverflow.com/questions/12522903/uitabbarcontroller-rotation-issues-in-ios-6

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.