博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIDeviceOrientationDidChangeNotification和UIApplicationDidChangeStatusBarFrameNotification
阅读量:5232 次
发布时间:2019-06-14

本文共 1119 字,大约阅读时间需要 3 分钟。

这几天做App的时候,需要添加旋转屏通知以便调整UI布局

刚开始我使用的是UIDeviceOrientationDidChangeNotification,

一直有一些问题就是,如果使用这个通知,当iPhone/iPad旋转的时候,你会得到的旋转方向会是所有的

[cpp]
  1. UIDeviceOrientationUnknown和UIDeviceOrientationFaceUp等  

 

[cpp]
  1. typedef enum {  
  2.     UIDeviceOrientationUnknown,  
  3.     UIDeviceOrientationPortrait,            // Device oriented vertically, home button on the bottom  
  4.     UIDeviceOrientationPortraitUpsideDown,  // Device oriented vertically, home button on the top  
  5.     UIDeviceOrientationLandscapeLeft,       // Device oriented horizontally, home button on the right  
  6.     UIDeviceOrientationLandscapeRight,      // Device oriented horizontally, home button on the left  
  7.     UIDeviceOrientationFaceUp,              // Device oriented flat, face up  
  8.     UIDeviceOrientationFaceDown             // Device oriented flat, face down  
  9. } UIDeviceOrientation;  

但是我不需要对

[cpp]
  1. UIDeviceOrientationUnknown和UIDeviceOrientationFaceUp  

进行处理,所以有时候就会出错,

后来更改为通知UIApplicationDidChangeStatusBarFrameNotification

在只有status更改位置的时候你才会收到通知,即你此时得到的方向只会是

 

[cpp]
    1. UIDeviceOrientationPortrait  
    2. UIDeviceOrientationPortraitUpsideDown  
    3. UIDeviceOrientationLandscapeLeft  
    4. UIDeviceOrientationLandscapeRight 

转载于:https://www.cnblogs.com/Free-Thinker/p/6478691.html

你可能感兴趣的文章
安装cocoa pods时出现Operation not permitted - /usr/bin/xcodeproj的问题
查看>>
makefile中使用变量
查看>>
GIT笔记:将项目发布到码云
查看>>
JavaScript:学习笔记(7)——VAR、LET、CONST三种变量声明的区别
查看>>
JavaScript 鸭子模型
查看>>
SQL Server 如何查询表定义的列和索引信息
查看>>
GCD 之线程死锁
查看>>
NoSQL数据库常见分类
查看>>
一题多解 之 Bat
查看>>
Java 内部类
查看>>
{面试题7: 使用两个队列实现一个栈}
查看>>
【练习】使用事务和锁定语句
查看>>
centos7升级firefox的flash插件
查看>>
Apache Common-IO 使用
查看>>
评价意见整合
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>
系统的横向结构(AOP)
查看>>
linux常用命令
查看>>
NHibernate.3.0.Cookbook第四章第6节的翻译
查看>>