Xcode 中的 UIKit UISwipeGestureRecognizer 在笔尖加载期间崩溃应用程序?

发布于 2024-11-24 12:41:18 字数 245 浏览 5 评论 0原文

我已将 UISwipeGestureRecognizer 添加到我的 Xcode 笔尖,并将其放置在那里会使我的应用程序崩溃:

..异常“NSInvalidArgumentException”,原因: '-[UISwipeGestureRecognizer initWithCoder:]:无法识别的选择器 发送到实例 0x5c2ab30'。

为什么?

I've added a UISwipeGestureRecognizer to my Xcode nib and having it there makes my app crash with:

..exception 'NSInvalidArgumentException', reason:
'-[UISwipeGestureRecognizer initWithCoder:]: unrecognized selector
sent to instance 0x5c2ab30'.

Why?

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

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

发布评论

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

评论(1

我不是你的备胎 2024-12-01 12:41:18

发生这种情况是因为您在错误的 iOS 版本上运行应用程序。在 iOS <5 上,您无法将手势识别器放入 xib 文件中,因此如果您想支持旧版本的 iOS,则必须在代码中创建它们。

This is happening because you're running the app on the wrong version of iOS. You can't put gesture recognizers in a xib file on iOS <5, so you'll have to create them in code if you want to support older versions of iOS.

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