我必须将数据放在tableview中,但是即使我很难从JSON获取信息,也无法将数据传递给postTitle变量。这是为什么?这是我的代码:

import UIKit

class ViewController: UIViewController, UITableViewDelegate,     UITableViewDataSource {

var postTitle = [AnyObject]()

override func viewDidLoad() {
    super.viewDidLoad()

    var baseURL = "https://hacker-news.firebaseio.com/v0/topstories.json"

    //        https://hacker-news.firebaseio.com/v0/item/9324191.json

    if let url = NSURL(string: baseURL) {
        var taskURL = NSURLSession.sharedSession().dataTaskWithURL(url, completionHandler: { (data: NSData!, response: NSURLResponse!, error: NSError!) -> Void in

            if error != nil {
                println("Error: \(error.localizedDescription)")
            } else {
                var jsonError: NSError?
                if let topStories = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.MutableContainers, error: &jsonError) as? NSArray {

                        self.postTitle.append(topStories)

                }


            }

        })


        taskURL.resume()

    }


}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    println(postTitle.count)
    return postTitle.count
}



func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell = UITableViewCell()

    println(self.postTitle)
  //  cell.textLabel?.text = postTitle[indexPath.row]
    return cell
}




override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}


}

最佳答案

topStoriesNSArray,但是您将其追加到postTitle数组(类型为[AnyObject])。 Array.append将单个项目添加到数组。因此,您将在NSArray数组中添加一个条目,即一堆帖子ID的postTitle

我猜您想要将topStories的内容添加到postTitle吗?在这种情况下,您要使用extend而不是append方法:

self.postTitle.extend(topStories)

10-02 22:40