- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为了接收 UIDeviceOrientation
更改通知,必须做两件事:
UIDevice
上调用 beginGeneratingDeviceOrientationNotifications
这是我的问题:
假设我有两个 View Controller 想要接收这些通知,第一个调用 beginGeneratingDeviceOrientationNotifications
并注册,然后第二个执行相同的操作。现在我的第一个 VC 卸载和注销并调用 endGeneratingDeviceOrientationNotifications
。即使第一个 VC“关闭它们”,第二个 VC 是否会继续接收这些通知?
最佳答案
是的。 begin…
方法的文档至少是这样说的:
You may nest calls to this method safely, but you should always match each call with a corresponding call to the
endGeneratingDeviceOrientationNotifications
method.
这种接口(interface)通常使用一些计数器来实现。每个 begin...
方法递增计数器,每个 end...
方法递减它。只要计数器大于零,就会发送通知。
关于ios - UIDeviceOrientation 通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14241616/
我试图找出 iPhone 在模拟器中的方向,而不是使用 UIDevice 方向属性将其提供给我,我只是得到 UIDeviceOrientationUnknown。 这个属性在模拟器中不起作用吗?发生这
为了接收 UIDeviceOrientation 更改通知,必须做两件事: 在 UIDevice 上调用 beginGeneratingDeviceOrientationNotifications 注
我想检测设备的当前方向。 所以,我用了一行代码 注意:即使我没有注册它也能给我方向感 -(IBAction) deviceOrientationChanged:(id) sender{ NSL
UIDeviceOrientationUnknown Orientation 的用途是什么?订阅有关设备方向的通知时,什么时候接收此消息比根本不接收任何消息更有利? 我只是想理解为什么这个方向甚至包含
我有以下代码根据方向填充 View 。这总是返回景观。 - (void)setData:(BCPlaylist *)list { UIDeviceOrientation orientation =
我目前正在制作一款游戏,如果您先拿起手机,那么您就输了。因此,我有一个方向观察器来检查手机何时被拿起(纵向)。但是,每当我锁定手机然后解锁时,方向观察器会自动认为手机处于纵向模式,即使手机正面朝上。
我想检测 UIDeviceOrientationFaceDown。我怎样才能做到这一点???实际上,当我的 iPhone 脸朝下放在平面上时,我想执行一些操作。这怎么可能???请帮助我做到这一点。 我
我收到以下代码的上述编译器警告。我了解界面和设备方向之间的区别,但不确定如何修改以删除警告。有人可以帮忙吗? - (void)willRotateToInterfaceOrientation:(UII
我正在尝试检测某个 ViewController 中的方向变化。我使用通知和自定义功能。对于 iPhone 7(运行 iOS 10.2),每次通知更改时都会调用旋转功能。但是在使用 iPhone 6(
我正在使用 Xcode 5.0.2 并在尝试编译我的 Objective-C 代码时收到以下警告: Implicit conversion from enumeration type 'enum UI
在 Xcode 中,我在 FBConnect 的以下行中收到警告: _orientation = [UIApplication sharedApplication].statusBarOrientat
完整警告: Implicit conversion from enumeration type 'UIInterfaceOrientation' to different enumeration ty
我是一名优秀的程序员,十分优秀!