iPhone開發應用中如何以訊息通知方式設定旋轉View

來源:互聯網
上載者:User

iPhone開發應用中以訊息通知方式設定旋轉View是本文要介紹的內容,主要是來學如何來旋轉View,具體內容來看本文詳解。看到這篇不錯, 直接轉載過來了, 沒什麼可解釋的,一看就明白 :)。

整個程式需要支援橫豎屏切換得時候,會比較簡單,在每個ViewController 的

 
  1. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 

方法中,return YES; 就好。

可如果只是要某個VC( = View Controller)支援橫豎屏切換呢?單獨在那個view controller中像上面那樣做是沒有效果的。

這個時候我們可以取 UIDevice的 Orientation來判定:

1、在VC中註冊 UIDevice 的 UIDeviceOrientationDidChangeNotification 通知:

 
  1. NSNotificationCenter *center = [NSNotificationCenter defaultCenter];  
  2. [center addObserver:self selector:@selector(doRotate:) name:UIDeviceOrientationDidChangeNotification object:nil]; 

2、在自己的 doRotate函數裡面處理:

 
  1. - (void)doRotate:(NSNotification *)notification{  
  2. UIDevice *myDevice = [UIDevice currentDevice];  
  3. UIDeviceOrientation deviceOrientation = [myDevice orientation];  
  4. UIApplication *app = [UIApplication sharedApplication];  
  5. [app setStatusBarOrientation:deviceOrientation];  

3.

 
  1. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 

也是要 return YES。

小結:iPhone開發應用中以訊息通知方式設定旋轉View的內容介紹完了,希望通過本文的學習能對你有所協助!

聯繫我們

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