簡體   English   中英

表格視圖未在單元格中顯示內容

[英]table view not displaying contents in the cells

我正在嘗試使用alamofire和swifty json從堆棧交換api獲取一些數據。 我能夠在日志中打印所需的數據,但是當我運行該應用程序時,模擬器僅顯示空單元格。 我檢查了標識符,並將原型單元格值設置為1。

class MainTableViewController: UITableViewController,UISearchResultsUpdating {


    var searchKeyword: String = "questions"

    // empty array to store the search results
    var searchResults: [SearchResult] = []

func alamofireFunction() {
  Alamofire.request(.GET, "https://api.stackexchange.com/2.2/questions?=%20\(searchKeyword)%20viewpage=1&fromdate=1183075200&todate=2554416000&order=asc&sort=activity&tagged=ios&site=stackoverflow").responseJSON { (response) -> Void in

            switch response.result {

            case .Success:
                if let value = response.result.value {
                    let json = JSON(value)
                    for (var idx=0; idx<=json["items"].count; idx++) {
                        let result = SearchResult()
                        //print(json["items"][idx]["title"].stringValue)
                        result.name = json["items"][idx]["owner"]["display_name"].stringValue
                        result.question = json["items"][idx]["title"].stringValue
                        result.image = json["items"][idx]["owner"]["profile_image"].stringValue
                        self.searchResults.append(result)     
                    }                   
                }

            case .Failure:
                print("error")



            }
        }


    }


    override func viewDidLoad() {
        super.viewDidLoad()


        alamofireFunction()

 }
         override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }   
    // MARK: - Table view data source
    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! MainTableViewCell


        cell.questionLabel.text = searchResults[indexPath.row].question
      cell.nameLabel.text = searchResults[indexPath.row].name


        return cell
    }



        override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
            // #warning Incomplete implementation, return the number of sections
            return 1
        }

        override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
            // #warning Incomplete implementation, return the number of rows
            return searchResults.count

    }`

當數據源更改時,必須調用self.reloadData()。 這將導致tableView調用dataSource方法。

這是因為您使用的是來自Url的請求,該過程在線程上執行,因此當您以這種方式獲取數據時,必須調用tableView.reloadData()來告知數據源該過程已完成。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM