我想用SwiftJSON处理json,但是我叠了一下。
有人给我看示例代码吗?
我尝试使用此库。
https://github.com/SwiftyJSON/SwiftyJSON
尽管我将SwiftyJSON.swift放在了同一项目中,但出现错误“没有这样的模块“SwiftyJSON””
因此,请更正我的代码或向我展示使用swiftyJSON lib处理来自Web的json的示例代码。
这是我的代码:
import UIKit
import SwiftyJSON // No such module "SwiftyJSON"
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let url = NSURL(string: "http://express.heartrails.com/api/json?method=getPrefectures")
var request = NSURLRequest(URL: url!)
var data = NSURLConnection.sendSynchronousRequest(request, returningResponse: nil, error: nil)
var json = NSJSONSerialization.JSONObjectWithData(data!, options: nil, error: nil) as NSDictionary
var hoge = JSON(data)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
这是我的Xcode捕获
最佳答案
如果您在项目中添加了SwiftyJSON.swift
,则无需对其进行import
。它已经可用。
尝试:
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let url = NSURL(string: "http://express.heartrails.com/api/json?method=getPrefectures")
var request = NSURLRequest(URL: url!)
var data = NSURLConnection.sendSynchronousRequest(request, returningResponse: nil, error: nil)
if data != nil {
var hoge = JSON(data: data!)
println(hoge)
}
}
}
关于ios - 使用SwiftyJSON处理JSON的示例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26754481/