Swift对JSON完成操作

时间:2015-03-05 10:04:16

标签: json swift action for-in-loop complete

我编写了一个发出JSON请求的函数,并将结果放在三个数组中。

我希望在完全完成此JSON请求后提供视图控制器。

我尝试将动作放在for-in循环下面,但这没有用。

这是我的代码:

func getJSON() {
        var vc = self.storyboard?.instantiateViewControllerWithIdentifier("myVCId") as ViewController
        let urlAsString = "http://localhost:8888/domainchecker/check.php?domain=/" + tfDomain.text;
        println(urlAsString);
        let url = NSURL(string: urlAsString)!
        let urlSession = NSURLSession.sharedSession()

        let jsonQuery = urlSession.dataTaskWithURL(url, completionHandler: { data, response, error -> Void in
            if (error != nil) {
                println(error.localizedDescription)
            }
            var err: NSError?

            var jsonResult = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.MutableContainers, error: &err) as NSDictionary
            if (err != nil) {
                println("JSON Error \(err!.localizedDescription)")
            }
            let arrayFromJson: [[String:String]] = jsonResult["ITEMS"] as [[String:String]]
            dispatch_async(dispatch_get_main_queue(), {
                for item in arrayFromJson {
                    vc.tableData.append(item["DOMAIN"]!);
                    vc.tablePrice.append(item["PRICE"]!);
                    vc.tableAvailability.append(item["AVAILABLE"]!);
                }
                self.presentViewController(vc, animated: true, completion: nil)
            })

        })
        jsonQuery.resume()
    }

这是代码完成后我想要执行的操作:

self.presentViewController(vc, animated: true, completion: nil)

提前致谢。

1 个答案:

答案 0 :(得分:0)

if (arrayFromJson.count > 0) {
                    self.presentViewController(vc, animated: true, completion: nil)
                }

就是这样。