swift protocol(协议) associatedtype关联类型
Posted ruixin_jia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift protocol(协议) associatedtype关联类型相关的知识,希望对你有一定的参考价值。
定义一个协议时,有的时候声明一个或多个关联类型作为协议定义的一部分将会非常有用。关联类型为协议中的某个类型提供了一个占位名(或者说别名),其代表的实际类型在协议被采纳时才会被指定。你可以通过 associatedtype 关键字来指定关联类型。比如使用协议声明更新cell的方法:
- //模型
- struct Model {
- let age: Int
- }
- //协议,使用关联类型
- protocol TableViewCell {
- associatedtype T
- func updateCell(_ data: T)
- }
- //遵守TableViewCell
- class MyTableViewCell: UITableViewCell, TableViewCell {
- typealias T = Model
- func updateCell(_ data: Model) {
- // do something ...
- }
- }
以上是关于swift protocol(协议) associatedtype关联类型的主要内容,如果未能解决你的问题,请参考以下文章
swift中的protocol和OC中protocol的区别
swift protocol(协议) associatedtype关联类型