SBJson和swift

时间:2014-11-02 10:39:52

标签: xcode swift sbjson

有没有人知道如何在swift中使用SBJson库?

我在Objective-C

中有这段代码
NSString *responseString = [request responseString];
NSDictionary *responseDict = [responseString JSONValue];

尝试

var responseString = request.responseString
let responseDict: NSDictionary = responseString.JSONValue

Xcode抱怨“() - >字符串没有名为JSONValue的成员”

我已经包括

#import "SBJson.h"

在“MyProjectName”-Bridging-Header.h

1 个答案:

答案 0 :(得分:0)

刚刚发现:SBJson中的扩展适用于NSString类型,但Swift String类型是另一种类型。

它适用于此代码:

var responseString: NSString = request.responseString()
let responseDict: NSDictionary = responseString.JSONValue() as NSDictionary