有没有人知道如何在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
中答案 0 :(得分:0)
刚刚发现:SBJson中的扩展适用于NSString类型,但Swift String类型是另一种类型。
它适用于此代码:
var responseString: NSString = request.responseString()
let responseDict: NSDictionary = responseString.JSONValue() as NSDictionary