当前位置:  开发笔记 > IOS > 正文

声明一个Swift协议,它具有属性返回值CollectionType <Int>?

如何解决《声明一个Swift协议,它具有属性返回值CollectionType<Int>?》经验,为你挑选了0个好方法。

是这样的

protocol A {
    var intCollection: CollectionType { get }
}

要么

protocol A {
    typealias T: CollectionType where T.Generator.Element == Int
    var intCollection: T
}

可以在Swift 2.1中使用吗?


Swift 4的更新

Swift 4现在支持此功能!在这里阅读更多内容

推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有