【iOS介面開發】UIWindow旋轉螢幕自適應

來源:互聯網
上載者:User

螢幕上顯示的每個視圖都被包含於UIWindow對象,app內每個window之間相互獨立。app接收到的事件都最先路由到合適的window對象,再由此派發到合適的視圖。需要注意的是,keyWindow接收鍵盤事件和其他與觸摸無關的事件。

Windows與ViewControllers一起協作,從而實現旋轉螢幕變換,完成各項任務。避免直接調用- [UIWindow addSubview:]方法來添加視圖,而是通過操作UIViewController來添加視圖,從而實現旋轉螢幕自適應。

螢幕上的window根據是否是keyWindow,可分成兩種: keyWindow:app必需,且同時間只會有一個。

例子:

UIWindow *window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];window.rootViewController = [[UIViewController alloc] init];[window makeKeyAndVisible];/** keep strong reference to window */
其他輔助window:用於顯示alert/statusBar等輔助視圖。

例子:

UIWindow *window = [[UIWindow alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth([UIScreen mainScreen].bounds), 64)];window.windowLevel = UIWindowLevelStatusBar + 1;/** keep strong reference to window */CustomViewController *vc = [[CustomViewController alloc] init];/** CustomViewController could rewite shouldAutorotate & supportedInterfaceOrientations to support orientations  */window.rootViewController = vc;window.hidden = NO; /** must have to show */
相關文章

聯繫我們

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