iOS開發(fā):屏幕的旋轉

Device Orientation:設備方向

typedef NS_ENUM(NSInteger, UIDeviceOrientation) {
    UIDeviceOrientationUnknown,
    UIDeviceOrientationPortrait,            // Device oriented vertically, home button on the bottom
    UIDeviceOrientationPortraitUpsideDown,  // Device oriented vertically, home button on the top
    UIDeviceOrientationLandscapeLeft,       // Device oriented horizontally, home button on the right
    UIDeviceOrientationLandscapeRight,      // Device oriented horizontally, home button on the left
    UIDeviceOrientationFaceUp,              // Device oriented flat, face up
    UIDeviceOrientationFaceDown             // Device oriented flat, face down
}

UIInterfaceOrientation:界面方向

typedef NS_ENUM(NSInteger, UIInterfaceOrientation) {
    UIInterfaceOrientationUnknown            = UIDeviceOrientationUnknown,
    UIInterfaceOrientationPortrait           = UIDeviceOrientationPortrait,
    UIInterfaceOrientationPortraitUpsideDown = UIDeviceOrientationPortraitUpsideDown,
    UIInterfaceOrientationLandscapeLeft      = UIDeviceOrientationLandscapeRight,
    UIInterfaceOrientationLandscapeRight     = UIDeviceOrientationLandscapeLeft
}

屏幕旋轉的兩個通知

// 硬件旋轉通知,此時界面還未完成旋轉可設置界面的旋轉
UIDeviceOrientationDidChangeNotification
// 界面旋轉通知,此時界面已經(jīng)完成旋轉
UIApplicationDidChangeStatusBarOrientationNotification

判斷當前界面方向

BOOL isPortrait = UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]);
BOOL isLandscape = UIInterfaceOrientationIsLandscape([[UIApplication sharedApplication] statusBarOrientation]);

單個頁面是否可以旋轉

@property(nonatomic, readonly) BOOL shouldAutorotate NS_AVAILABLE_IOS(6_0) __TVOS_PROHIBITED;
@property(nonatomic, readonly) UIInterfaceOrientationMask supportedInterfaceOrientations NS_AVAILABLE_IOS(6_0) __TVOS_PROHIBITED;

  • 面向Orientation的信息:隨著屏幕的方向變化

    • [UISCreen bounds]
    • [UISCreen applicationFrame]
    • Status bar frame notifications
    • Keyboard frame notifications
  • 屏幕旋轉時使得View有不同布局的實現(xiàn)方法

// way1
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator {
    [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
    [coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext>  _Nonnull context) {
        if (UIInterfaceOrientationIsPortrait([UIApplication sharedApplication].statusBarOrientation)) {
            _testTextField.frame = CGRectMake(50, 50, 150, 50);
            _testButton.frame = CGRectMake(50, 120, 150, 50);
        } else {
            _testTextField.frame = CGRectMake(50, 50, 150, 50);
            _testButton.frame = CGRectMake(220, 50, 150, 50);
        }
    } completion:^(id<UIViewControllerTransitionCoordinatorContext>  _Nonnull context) {
        
    }];
}
// way2
- (void)viewDidLayoutSubviews {
    [super viewDidLayoutSubviews];
    if (UIInterfaceOrientationIsPortrait([UIApplication sharedApplication].statusBarOrientation)) {
        _testTextField.frame = CGRectMake(50, 50, 150, 50);
        _testButton.frame = CGRectMake(50, 120, 150, 50);
    } else {
        _testTextField.frame = CGRectMake(50, 50, 150, 50);
        _testButton.frame = CGRectMake(220, 50, 150, 50);
    }
}
  • 旋轉屏幕方向
NSNumber *value0 = [NSNumber numberWithInteger:UIDeviceOrientationUnknown];
[[UIDevice currentDevice] setValue:value0 forKey:@"orientation"];
NSNumber *value = [NSNumber numberWithInteger:UIDeviceOrientationLandscapeLeft];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];

  • 需求:APP總體不跟隨設備的旋轉來改變界面的方向,個別頁面橫屏展示

實現(xiàn)思路:首先APP應該支持橫屏和豎屏的展示狞谱,也就是說在TARGETS中的Device Orientation選項勾選橫屏和豎屏選項瞎领。假設ViewController是根視圖挟阻,那么當ViewController的- (BOOL)shouldAutorotate方法返回為YES的時候毅整,界面的方向跟隨設備方向變化。在NV結構(NavigationController上放置ViewController的結構)中需橫屏展示的ViewController可不是根視圖木羹,此時界面是否跟隨設備旋轉取決于根視圖NavigationController的- (BOOL)shouldAutorotate方法的返回值。在這種情況中解孙,可重寫NavigationController的- (BOOL)shouldAutorotate方法返回Navigation棧中的頂部ViewController的shouldAutorotate坑填,以此達到在單個頁面隨時控制其橫屏的效果。橫屏通過Key-Value的方法修改設備方向來達到目的弛姜。

一脐瑰、勾選橫屏和豎屏選項

勾選橫屏和豎屏選項

二、重寫- (BOOL)shouldAutorotate返回棧頂控制器的shouldAutorotate

@interface MyNav : UINavigationController

@end

@implementation MyNav

- (BOOL)shouldAutorotate {
    return self.topViewController.shouldAutorotate;
}

@end

三廷臼、在將要橫屏顯示的ViewController中苍在,重寫- (BOOL)shouldAutorotate绝页,重點是用全局變量控制它的返回值

@interface LandscapeViewController () {
    BOOL _allowAutorotate;
}

- (BOOL)shouldAutorotate {
    [super shouldAutorotate];
    return _allowAutorotate;
}

四、通過Key-Value改變設備方向

_allowAutorotate = YES;
NSNumber *value0 = [NSNumber numberWithInteger:UIDeviceOrientationUnknown];
[[UIDevice currentDevice] setValue:value0 forKey:@"orientation"];
NSNumber *value = [NSNumber numberWithInteger:UIDeviceOrientationLandscapeLeft];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];
_allowAutorotate = NO;
最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末寂恬,一起剝皮案震驚了整個濱河市续誉,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌初肉,老刑警劉巖酷鸦,帶你破解...
    沈念sama閱讀 212,029評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件剃执,死亡現(xiàn)場離奇詭異宇葱,居然都是意外死亡,警方通過查閱死者的電腦和手機守呜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,395評論 3 385
  • 文/潘曉璐 我一進店門眠寿,熙熙樓的掌柜王于貴愁眉苦臉地迎上來躬翁,“玉大人,你說我怎么就攤上這事盯拱『蟹ⅲ” “怎么了?”我有些...
    開封第一講書人閱讀 157,570評論 0 348
  • 文/不壞的土叔 我叫張陵狡逢,是天一觀的道長宁舰。 經(jīng)常有香客問我,道長奢浑,這世上最難降的妖魔是什么蛮艰? 我笑而不...
    開封第一講書人閱讀 56,535評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮雀彼,結果婚禮上壤蚜,老公的妹妹穿的比我還像新娘。我一直安慰自己徊哑,他們只是感情好袜刷,可當我...
    茶點故事閱讀 65,650評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著莺丑,像睡著了一般著蟹。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上梢莽,一...
    開封第一講書人閱讀 49,850評論 1 290
  • 那天萧豆,我揣著相機與錄音,去河邊找鬼蟹漓。 笑死炕横,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的葡粒。 我是一名探鬼主播份殿,決...
    沈念sama閱讀 39,006評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼膜钓,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了卿嘲?” 一聲冷哼從身側響起颂斜,我...
    開封第一講書人閱讀 37,747評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎拾枣,沒想到半個月后沃疮,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,207評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡梅肤,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,536評論 2 327
  • 正文 我和宋清朗相戀三年司蔬,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片姨蝴。...
    茶點故事閱讀 38,683評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡俊啼,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出左医,到底是詐尸還是另有隱情授帕,我是刑警寧澤,帶...
    沈念sama閱讀 34,342評論 4 330
  • 正文 年R本政府宣布浮梢,位于F島的核電站跛十,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏秕硝。R本人自食惡果不足惜芥映,卻給世界環(huán)境...
    茶點故事閱讀 39,964評論 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望远豺。 院中可真熱鬧屏轰,春花似錦、人聲如沸憋飞。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,772評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽榛做。三九已至,卻和暖如春内狸,著一層夾襖步出監(jiān)牢的瞬間检眯,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,004評論 1 266
  • 我被黑心中介騙來泰國打工昆淡, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留锰瘸,地道東北人。 一個月前我還...
    沈念sama閱讀 46,401評論 2 360
  • 正文 我出身青樓昂灵,卻偏偏與公主長得像避凝,于是被迫代替她去往敵國和親舞萄。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,566評論 2 349

推薦閱讀更多精彩內(nèi)容