Xcode 中的 UIKit UISwipeGestureRecognizer 在笔尖加载期间崩溃应用程序?
我已将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发生这种情况是因为您在错误的 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.