带有 UITableView 的选项卡需要很长时间才能加载

Tab with UITableView takes long to load

我有一个包含 UITableView 的选项卡。 UITableView 从服务器加载 JSON。这是我的 viewDidLoad():

中的一些行
// Register the UITableViewCell class with the tableView
        self.tableView?.registerClass(UITableViewCell.self, forCellReuseIdentifier: self.cellIdentifier)
        var tblView =  UIView(frame: CGRectZero)
        tableView.tableFooterView = tblView
        tableView.backgroundColor = UIColor.clearColor()

        startConnection()

这是我的 startConnection():

func startConnection() {
        let url = NSURL(string: "some correct URL")
        var request = NSURLRequest(URL: url!)
        var data = NSURLConnection.sendSynchronousRequest(request, returningResponse: nil, error: nil)
        if data != nil {
            var json = JSON(data: data!)

            if let jsonArray = json.arrayValue {
                for jsonDict in jsonArray {
                    var pageName: String? = jsonDict["title"].stringValue

                    //some code

                }
            }
            activityIndicator.stopAnimating()
        } else {
            println("No data")
            activityIndicator.stopAnimating()
            var alert = UIAlertController(title: "No data", message: "No data received", preferredStyle: UIAlertControllerStyle.Alert)

            let cancelAction = UIAlertAction(title: "Cancel", style: .Cancel) { (action) in

            }
            alert.addAction(cancelAction)

            let OKAction = UIAlertAction(title: "Retry", style: .Default) { (action) in
                self.startConnection()
            }
            alert.addAction(OKAction)
            self.presentViewController(alert, animated: true, completion: nil)
        }
    }

第一次加载后,标签会在点击时显示。我在想是否是 NSURLConnection.sendSynchronousRequest 导致了延迟。有什么意见和建议吗?我真的不知道如何使用 sendAsynchronousRequest =/ 请帮忙。谢谢! =D

你可以这样做:

let url:NSURL = NSURL(string:"some url")
let request:NSURLRequest = NSURLRequest(URL:url)
let queue:NSOperationQueue = NSOperationQueue()

NSURLConnection.sendAsynchronousRequest(request, queue: queue, completionHandler:{ (response: NSURLResponse!, data: NSData!, error: NSError!) -> Void in
    /* Your code */
})

尽管有多种方法可以从网站获取数据,但重要的是您使用 dispatch_async(dispatch_get_main_queue()) {} 在主线程上执行 UI 更新。这是因为 URL 任务,例如 NSURLSession.dataTaskWithURLNSURLConnection.sendAsynchronousRequest() {} 在后台线程上执行,所以如果您不在主线程上显式更新 UI,您通常会遇到延迟.这是一个简单的请求:

func fetchJSON(sender: AnyObject?) {

    let session = NSURLSession.sharedSession()
    let url: NSURL! = NSURL(string: "www.someurl.com")

    session.dataTaskWithURL(url) { (data, response, error)  in

        var rawJSON: AnyObject? = NSJSONSerialization.JSONObjectWithData(data, options: .allZeros, error: nil)

        if let result = rawJSON as? [[String: AnyObject]] {
            dispatch_async(dispatch_get_main_queue()) {
                // Update your UI here ie. tableView.reloadData()
            }
        }
    }.resume()
}