将应用程序委托设置为第一响应者

发布于 2024-12-15 14:55:02 字数 593 浏览 3 评论 0原文

我正在尝试实现在我的应用程序中有效的震动识别。为此,我将以下代码添加到我的 xxxAppDelegate.m 中:

-(BOOL)canBecomeFirstResponder {
    return YES;
}

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {
    if (event.type == UIEventSubtypeMotionShake) {
        NSLog(@"Shaken, not stirred.");
    }
}

但因为在 .h 文件中,委托被定义为 a,所以

@interface xxxAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate>

我无法

[self becomeFirstResponder];

在 .m 中使用 使应用程序委托成为第一响应者。因此,它当然不起作用。 让它发挥作用的最佳方法是什么?

I'm trying to implement a shake recognition that works throughout my application. To do this I'm adding the following code to my xxxAppDelegate.m:

-(BOOL)canBecomeFirstResponder {
    return YES;
}

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {
    if (event.type == UIEventSubtypeMotionShake) {
        NSLog(@"Shaken, not stirred.");
    }
}

But because in the .h file the delegate is defined as a

@interface xxxAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate>

I cannot use the

[self becomeFirstResponder];

in the .m to make the app delegate the first responder. Therefore of course it doesn't work.
What would be the best way to get it working?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高冷爸爸 2024-12-22 14:55:02

如果将应用程序委托更改为 UIResponder 的子类,会发生什么?

编辑

您可以在此处阅读有关响应者链的信息< /a> 在文档中。

What happens if you change the app delegate to a subclass of UIResponder?

Edit

You can read about the responder chain here in the documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文