小编典典

如何快速使类符合协议?

swift

我需要使一个类符合Swift中的协议,以实现委托。我该怎么办?


阅读 247

收藏
2020-07-07

共1个答案

小编典典

class YourClass: SuperClassIfAny, FirstProtocol, SecondProtocol {
}

但是请注意,某些协议 要求 您实现委托方法。例如,UITableViewDataSource 要求 您实施

func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int

func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!

如果那些不是由符合协议的类实现的,则Xcode会给您一个编译错误(始终检查协议声明,Cmd + Click将向您显示 必须 实现的方法)。

2020-07-07