在Swift 2中覆盖func错误

在Swift 2中覆盖func错误,第1张

概述这个代码在XCode 6没有错误,但在XCode 7(Swift 2)发生此错误: Method does not override any method from its superclass override func touchesBegan(touches: Set<NSObject>, withEvent event: UIEvent) { /* Called when 这个代码在XCode 6没有错误,但在XCode 7(Swift 2)发生此错误:

Method does not overrIDe any method from its superclass

overrIDe func touchesBegan(touches: Set<NSObject>,withEvent event: UIEvent) {        /* Called when a touch begins */}

当删除覆盖字时发生此错误:

Method ‘touchesBegan(:withEvent:)’ with Objective-C selector ‘touchesBegan:withEvent:’ conflicts with method ‘touchesBegan(:withEvent:)’ from superclass ‘UIResponder’ with the same Objective-C selector

你得到你的第一个错误,因为许多Cocoa touch已经过审计支持Objective-C泛型,意味着像数组和集合这样的元素现在可以输入。因此,此方法的签名已更改,并且由于您编写的内容不再与此匹配,因此您会收到一条错误,说明您已将某个方法标记为覆盖,但实际上并未匹配任何方法从超级类。

然后当你删除overrIDe关键字,你得到的错误是让你知道,你已经做了一个方法,有一个冲突的Objective-C选择器与真正的touches开始方法(不像Swift,Objective-C不支持方法重载)。

底线是,在Swift 2中,你的触摸开始覆盖应该看起来像这样。

overrIDe func touchesBegan(touches: Set<UItouch>,withEvent event: UIEvent?) {    // stuff}

有关Objective-C泛型对您的Swift代码意味着什么的更多信息,我建议您看一下Using Swift with Cocoa and Objective-C的预发布版本中的轻量级泛型部分。 34。

总结

以上是内存溢出为你收集整理的在Swift 2中覆盖func错误全部内容,希望文章能够帮你解决在Swift 2中覆盖func错误所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1059613.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存