从远程数据库

时间:2016-03-23 17:11:55

标签: ios swift uitableview ios9

我遇到了UITableView的问题。

我想用从远程数据库获取的数据动态填充其单元格,因此在数据到达之前需要一些时间。

以下是代码:

class MailBoxViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

@IBOutlet weak var tableView: UITableView!

var users: [NSDictionary] = []

override func viewDidLoad() {
    super.viewDidLoad()

    // call to rest API code to get all users in [NSDictionary]
    (...)

    // set table view delegate and data source
    self.tableView.delegate = self
    self.tableView.dataSource = self
}

// set number of sections within table view
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return 1
}

// set number of rows for each section
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if section == 0 {
        return self.users.count
    }
    return 0
}

// set header title for each section
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    if section == 0 {
        return "Users"
    }
}

// set cell content for each row
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    // deque reusable cell
    let cell = tableView.dequeueReusableCellWithIdentifier("myCell", forIndexPath: indexPath) as UITableViewCell

    // set item title
    if indexPath.section == 0 {
        cell.textLabel?.text = self.users[indexPath.row]["firstname"] as? String
    }
    return cell
}
}

问题是,当调用tableView函数来设置每个部分的行数并为每行设置单元格内容时,我的[NSDictionary]用户仍然是空的。

我怎样才能在调用rest API代码之后设置行和单元格以使[NSDictionary]中的所有用户完成?

感谢您的任何反馈。

此致

3 个答案:

答案 0 :(得分:2)

当您收到API的回复时,您应设置self.users = arrayOfUsersYouReceivedFromServer,然后致电self.tableView.reloadData()。这个

答案 1 :(得分:2)

填充users后,请致电tableView.reloadData()。这将再次调用您的数据源方法。

答案 2 :(得分:2)

完成提取用户后,请致电tableView.reloadData()