从NSDictionary获取信息

时间:2015-07-12 02:23:06

标签: ios json xcode swift nsdictionary

我将结果命名为resultdictNSDictionary如下:

{
    data =     (
    );
    summary =     {
        "total_count" = 514;
    };
}

如何从中获得“514”?我正在使用swift。

2 个答案:

答案 0 :(得分:3)

试试这个

 var totalCount = yourDict.valueForKeyPath("summary.total_count")

答案 1 :(得分:1)

你可以这样做:

var totalCount = yourDict.objectForKey("summary").objectForKey("total_count")

将其转换为字符串

var totalCount = yourDict.objectForKey("summary").objectForKey("total_count") as! String

如果您使用:

println(totalCount)

将导致

Optional(514)

根据需要使用该变量