美文网首页
swift 协议添加一个枚举或者结构体泛型

swift 协议添加一个枚举或者结构体泛型

作者: 秋叶红90 | 来源:发表于2021-09-27 10:01 被阅读0次

    直接上代码

    public protocol CodingTableKey {
        static func crateTB();
    }
    
    public protocol TableDecodable {
        
        associatedtype CodingKeys: CodingTableKey
        typealias Properties = CodingKeys
        
    }
    
    extension TableDecodable{
        static func test(){
            self.CodingKeys.crateTB()
        }
    }
    
    class People: TableDecodable {
        enum CodingKeys:CodingTableKey {
            static func crateTB() {
                
            }
            
            case name
        }
        
        
        
    }
    

    相关文章

      网友评论

          本文标题:swift 协议添加一个枚举或者结构体泛型

          本文链接:https://www.haomeiwen.com/subject/spshnltx.html