UIResponder 问题

发布于 2024-11-18 18:27:27 字数 530 浏览 2 评论 0原文

今晚我一直在与 UIResponder 作斗争。这是我的困境。

如果我放入

- (BOOL)canBecomeFirstResponder{
    return YES;
}

mainViewController 中,那么我可以获得摇动事件。

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {

    if (event.type == UIEventSubtypeMotionShake) {
         //do something 
    }
}

但是,这意味着当我调用邮件表单和 webview 之类的东西时,键盘不会显示。

有什么方法可以让震动和键盘在模态视图中同时工作吗?

我尝试添加 [self resignFirstResponder]; 在 -viewDidDissapear 中,当模态弹出时会调用它,但运气不佳。

干杯

Tonight I've been battling with UIResponder. Here's my predicament.

If I put in

- (BOOL)canBecomeFirstResponder{
    return YES;
}

to my mainViewController then I can get shake events..

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {

    if (event.type == UIEventSubtypeMotionShake) {
         //do something 
    }
}

However, this means that when I call things like mail forms and webviews, the keyboard does not show up.

Is there any way I can get both shakes working and keyboard working in modal views?

I've tried adding [self resignFirstResponder];
in -viewDidDissapear, which gets called when a modal pops over, but no luck.

Cheers

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

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

发布评论

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

评论(1

婴鹅 2024-11-25 18:27:27

我在 iOS 上也遇到了同样的问题5.0,摇动事件并显示邮件表单。在呈现新的模态视图控制器之前,您必须辞去第一响应者的职务。

I had the same problem with iOS < 5.0, shake event and showing a mail form. You have to resign the first responder before the new modal view controller is being presented.

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