在协议

时间:2016-07-18 14:40:11

标签: ios

我想知道是否/如何在协议中实现UITextFieldDelegate方法。我使用的是Swift语言。我想实现下一个功能。在协议中实现文本字段委托方法,并通过多个不同的类实现该协议。

我希望知道如果可能,以及如何(例子)。

非常感谢!

1 个答案:

答案 0 :(得分:-1)

这称为Protocol Inheritance。例如:

protocol YourProtocol: UITextFieldDelegate {
    // protocol definition goes here
}