一、关于屏幕旋转的监听
UIDevice.orientationDidChangeNotification
通知
当设备手持角度发生变化即会触发,触发比较灵敏,不能体现设备真的发生了旋转
打印监听方法的 notification 对象
name = UIDeviceOrientationDidChangeNotification, object = Optional(<UIDevice: 0x281ef15c0>), userInfo = Optional([AnyHashable("UIDeviceOrientationRotateAnimatedUserInfoKey"): 1])
设备未锁定方向的情况下,哪怕 app 只支持竖向,旋转设备角度也会收到监听
UIApplication.didChangeStatusBarOrientationNotification
通知
当屏幕(一般是iPad)真正发生旋转才会触发
打印监听方法的 notification 对象
name = UIApplicationDidChangeStatusBarOrientationNotification, object = Optional(<UIApplication: 0x107507840>), userInfo = Optional([AnyHashable("UIApplicationStatusBarOrientationUserInfoKey"): 1])
用这个方法来监听 ipad 屏幕发生旋转,并进行适配
网友评论