如何在UITableView中使用计时器删除自定义单元格?

时间:2019-01-25 07:58:34

标签: ios swift uitableview timer

我正在开发一个带有“加号”按钮的应用程序,该按钮可以将秒表添加到表格视图中,每个单元格都有自己的计时器,并且可以自己播放。

当我试图像这样删除一个单元格时,会发生随机问题,例如:

  1. 秒表的顺序被更改
  2. 一些秒表的时间已归零。
  3. 如果以后尝试添加新的秒表,则带有计时器的旧秒表又回来了!

TableView

class StopWatchViewController: UIViewController {
    @IBOutlet weak var stopWatchesTableView: UITableView!
    var stopwatchesList: [String] = []

    var stopwatchesNum : Int = 0

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
        stopWatchesTableView.delegate = self
        stopWatchesTableView.dataSource = self

        NotificationCenter.default.addObserver(self, 
                                               selector: #selector(applicationDidEnterBackground(noti:)),                        
                                               name: UIApplication.didEnterBackgroundNotification,
                                               object: nil)
    }

    @objc func applicationDidEnterBackground(noti: Notification) {
        // Save Date
        let shared  = UserDefaults.standard
        shared.set(Date(), forKey: "SavedTime")
        print(Date())
    }

    func refresh() {
        stopWatchesTableView.reloadData()
    }

    @IBAction func AddStopWatch(_ sender: Any) {
        stopwatchesNum += 1;
        stopwatchesList.append(String(format: "Stopwatch %d", stopwatchesNum))
        refresh()
    }
}

extension StopWatchViewController: UITableViewDelegate, UITableViewDataSource {
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return stopwatchesList.count
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let stopWatch = stopwatchesList[indexPath.row]
        let cell = tableView.dequeueReusableCell(withIdentifier: "StopwatchCell") as! StopWatchCell
        cell.initCell(title: stopWatch, index: indexPath.row)
        return cell
    }

    func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
        return true
    }

    func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
        if editingStyle == UITableViewCell.EditingStyle.delete {
            stopwatchesList.remove(at: indexPath.row)
            stopWatchesTableView.deleteRows(at: [indexPath], with: .automatic)
            refresh()
        }
    }
}

什么会导致此类问题?

1 个答案:

答案 0 :(得分:0)

删除行后不要调用刷新方法。希望获得帮助。