我已经在我的
Xcode笔尖上
添加了一个UISwipeGestureRecognizer,并在那里让我的应用程序崩溃:
..exception ‘NSInvalidArgumentException’,reason:
‘-[UISwipeGestureRecognizer initWithCoder:]: unrecognized selector
sent to instance 0x5c2ab30’.
为什么?
发生这种情况是因为您在
错误版本的iOS上运行应用程序.您不能将手势识别器放在iOS< 5上的xib
文件中,因此如果您想
支持旧版本的iOS,则必须在
代码中创建它们.
原文链接:https://www.f2er.com/iOS/335585.html