Swift - 在控制器之间移动后表是空的

时间:2017-03-19 12:50:35

标签: ios swift uitableview

我正在更新现有的Objective-C应用程序。

有一个结构: AppDelegate中 - 创建mainBackgroundView并使用UITabBarController

添加子视图

我有一个“Tab”HistoryViewController:

@objc class HistoryViewController: UIViewController {

  override func viewDidLoad() {
    super.viewDidLoad()
    let historyTableViewController = HistoryTableViewController()        
    self.view.addSubview(historyTableViewController.view)
  }

}

和HistoryTableViewController:

import UIKit

@objc class HistoryTableViewController: UITableViewController {

// Mark: properties

var historyCalls = [HistoryItem]()

// Mark: private methods
private func loadSimpleHistory() {
    let hist1 = HistoryItem(personName: "Test", bottomLine: "text", date: "10:47")
    let hist2 = HistoryItem(personName: "Test 2", bottomLine: "text", date: "10:47")
    let hist3 = HistoryItem(personName: "Test 3", bottomLine: "text", date: "10:47")
            historyCalls += [hist1, hist2, hist3]
}




override func viewDidLoad() {
    super.viewDidLoad()

    self.loadSimpleHistory()

    self.tableView.register(UINib(nibName: "HistoryCallTableViewCell", bundle: nil), forCellReuseIdentifier: "HistoryCallTableViewCell")
}

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

// MARK: - Table view data source

override func numberOfSections(in 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 historyCalls.count
}


override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    guard let cell = tableView.dequeueReusableCell(withIdentifier: "HistoryCallTableViewCell", for: indexPath) as? HistoryCallTableViewCell else {
        fatalError("Coulnd't parse table cell!")
    }

    let historyItem = historyCalls[indexPath.row]

    cell.personName.text = historyItem.personName
    cell.bottomLine.text = historyItem.bottomLine
    cell.date.text = historyItem.date


    return cell
}

}

当我第一次使用HistoryViewController打开导航选项卡时,表格会显示数据。当我点击进入表格或切换navTab然后返回时,桌子就不存在了。

当我切换到另一个应用程序然后返回时,表再次出现。

如何解决这个问题?

谢谢

1 个答案:

答案 0 :(得分:0)

在viewwillappear中调用数据方法并重新加载表..

  override func viewWillAppear() {
     super.viewWillAppear()
     self.loadSimpleHistory()
     self.tableview.reloadData()
  }