如何在swift中将特定类(符合约束)类型转换为泛型?

时间:2016-01-22 10:59:03

标签: swift generics casting

我的情况类似于以下与.Net相关的问题。

Value of type 'T' cannot be converted to TServiceResponse是 我的代码:

public class TServiceResponse : ResponseNode,CommsObject{
    public var type : String!
    public var Status : String?



    required public init?(_ dictionary: NSDictionary){
        self.type = dictionary.field("$type")
        self.Status = dictionary.field("Status")


    }

}
public enum WebResult<T : ResponseNode> {
            case Result(JsonResponse<T>)
            case Error(NSError)
}

func executePost<Message : RequestMessage, Node : ResponseNode>(request: JsonPostRequest<Message>,
                completionHandler: (result: WebResult<Node>) -> Void) -> NSURLSessionTask?{

if let jsonResponse : JsonResponse<TServiceResponse> =   self.createResponse(data,  error: &runtimeError){
    return completionHandler(result: (jsonResponse as? WebResult<Node>)!)
    }
}

我相信我要求的东西首先会破坏泛型的目的。但有没有做到这一点的黑客?我需要这个hack来确保我对代码进行最小的更改。

1 个答案:

答案 0 :(得分:0)

这应该有效:

let result =  runtimeError.code == 0 ? WebResult.Result(jsonResponse) : WebResult.Error(runtimeError)    
return completionHandler(result:result)