使用 segues

问题描述

我有一个带有 tableView 的 viewController 和另一个包含我试图传递给 tableView 的数据的 viewController。为了向 tableView 添加条目,我使用了 segues,但 segues 的问题是它们不会永久更新 tableView。他们只是创建 ViewController 的一个实例并在那里添加条目,但原始对象保持不变。两个 ViewController 都是标签栏控制器的一部分。我想要的是永久更新表格。意思是,我希望能够导航到定义表的 viewController 并看到添加一个条目。这是带有 tableView 的 viewController 的代码

import UIKit

class FavoritesViewController: UIViewController {
    
    public var shops = [
        "hello world","hello world","hello world"
    ]
    
    @IBOutlet weak var table: UITableView!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        table.delegate = self
        table.dataSource = self
        table.reloadData()
    }
    
}



extension FavoritesViewController: UITableViewDelegate,UITableViewDataSource{
    
    func add(_ shopName: String) {
        print(shopName)
        shops.append(shopName)
    }
    
    
    func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
        return shops.count
    }
    
    func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell",for: indexPath)
        cell.textLabel?.text = shops[indexPath.row]
        return cell
        
    }
    
    // define the action. In this case "delete"
    func tableView(_ tableView: UITableView,editingStyleForRowAt indexPath: IndexPath) -> UITableViewCell.EditingStyle {
        return .delete
    }
    
    // do the actual deleting
    func tableView(_ tableView: UITableView,commit editingStyle: UITableViewCell.EditingStyle,forRowAt indexPath: IndexPath) {
        
        if editingStyle == .delete {
            tableView.beginUpdates()
            
            shops.remove(at: indexPath.row)
            tableView.deleteRows(at: [indexPath],with: .fade)
            
            tableView.endUpdates()
        }
        

    }
    
    
}

这是我尝试更新(在添加条目的情况下)另一个 viewController 中的 tableView 的方法

class MainViewController: UIViewController,CLLocationManagerDelegate,MKMapViewDelegate{

public var shopName:String?

// there are also many other vars,but they're irrelevant

public var favoritesDestinationVC = FavoritesViewController()


// prepares the data for the segue 
    override func prepare(for segue: UIStoryboardSegue,sender: Any?) {
        
      
        if segue.identifier == "goToFavs" {
            favoritesDestinationVC = segue.destination as! FavoritesViewController
            if let newShopName = shopName {
                favoritesDestinationVC.shops.append(newShopName)
            }
            
            
        }
    }



} 

但是,当我将条目添加到表中时,segue 会创建一个 FavoritesViewController 实例,在那里添加该条目,然后在弹出窗口中显示它,如下所示:

enter image description here

但是当我关闭这个窗口时,更改消失了(tableView 保持不变;3 次“Hello World”)。

我希望在关闭此窗口后将更改保存在 tableView 中。关于如何做到这一点的任何想法?关于如何使这些更改永久化?

解决方法

根据你的解释,它看起来像。 Segue 被定义为以模态呈现 FavoritesViewController。并且这种行为是预期的。通过您的实施。由于您没有更新作为标签栏控制器一部分的视图控制器对象。

要在标签栏控制器中的控制器中进行更改,您可以使用 tabcontroller.viewcontrollers 访问该对象。使用委托或通知等其他方式进行交流。

编辑: 这完全取决于您想要访问 FavoritesViewController 的位置。

如果你想从 TabBarViewController 访问(根据你的视图层次结构,它可能会改变。注意索引和类型转换):

let favVC = self.viewControllers?[1] as! FavoritesViewController
favVC.shops.append(newShopName)

如果您想从属于同一标签栏控制器的视图控制器访问:

var favVC = self.tabBarController?.viewControllers?[1] as! FavoritesViewController 
favVC.shops.append(newShopName)

注意:视图控制器的索引取决于标签栏控制器中的视图控制器顺序。类型转换取决于您的视图层次结构。