在我为类创建新实例时,在Swift中获取nil值

时间:2015-06-18 09:20:19

标签: ios xcode swift xcode6

我在为类创建新实例时遇到了问题。我在httpUtils中为HttpVo类设置了一个字典,但是通过在同一个类中创建新实例,无法在其他地方获得该字典。

由于

This is my demo project you can download source code here

1 个答案:

答案 0 :(得分:0)

您的方法callApiWithData将对象返回为HttpResponseVO

您在ViewController.swift中创建了一个新实例,但您没有设置任何内容。

试试吧。

self.httpVO = self.httpHelper.callApiWithData(dictParams, url: BASE_URL, httpType: httpType)