gpt4 book ai didi

ios - beginGeneratingDeviceOrientationNotifications 如何工作

转载 作者:可可西里 更新时间:2023-11-01 03:35:41 24 4
gpt4 key购买 nike

    [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[notificationCenter addObserver:self selector:@selector(deviceOrientationDidChange) name:UIDeviceOrientationDidChangeNotification object:nil];
orientation = AVCaptureVideoOrientationPortrait;

我想知道 beginGeneratingDeviceOrientationNotifications 意味着什么以及如何工作?

最佳答案

当你写这行时:

 [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];

你对设备说:“每次方向改变时请通知应用程序”

通过这样写:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange) name:UIDeviceOrientationDidChangeNotification object:nil];

您对应用程序说:“每次收到方向更改通知时,请调用 deviceOrientationDidChange 方法”。

现在在 deviceOrientationDidChange 中,您可以执行以下操作:

UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
if (orientation == UIDeviceOrientationPortrait)
[self doSomething];
else
[self doSomethingElse];

关于ios - beginGeneratingDeviceOrientationNotifications 如何工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15996646/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com