ios – Xcode 7 beta 5 Swift 2冗余符合协议错误

前端之家收集整理的这篇文章主要介绍了ios – Xcode 7 beta 5 Swift 2冗余符合协议错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我最近下载了 Swift 2附带的Xcode 7.下面是我尝试将我的类符合UITableViewDataSource和UITableViewDelegate时出现的错误,它在Xcode 6.2中运行得非常好,但在Xcode 7 beta 5中引发错误
class TableViewController: UITableViewController,UITableViewDataSource,UITableViewDelegate {
}

//error: Redundant conformance of ‘TableViewcontroller’ to protocol ‘UITableViewDataSource’

搜索谷歌的答案,但我无法得到它的解决方案.

解决方法

没有必要指出您的TableViewController符合这两个协议,因为UITableViewController已经这样做了.因此,由于继承,你的班级也将如此.

所有你需要的是:

class TableViewController: UITableViewController {
}

看起来Swift2比Swift更加严格.

原文链接:https://www.f2er.com/iOS/333577.html

猜你在找的iOS相关文章