gpt4 book ai didi

swift - 当 PopViewController 关闭时重新加载 MainViewController

转载 作者:行者123 更新时间:2023-11-28 05:29:17 25 4
gpt4 key购买 nike

我有一个主视图 Controller 和弹出 Controller 。请引用屏幕截图。

Main view controller

POPUP view controller

代码:

             @IBAction func show(sender: AnyObject) {

var popView = popupviewcontroller(nibName:"popview",bundle:nil)
var popController = UIPopoverController(contentViewController: popView)

popController.popoverContentSize = CGSize(width: 450, height: 450)
popController.presentPopoverFromRect(sender.frame, inView: self.view, permittedArrowDirections: UIPopoverArrowDirection.Down, animated: true)
}

对于 popupViewcontoller,我使用了 .xib。

当按下保存按钮时,数据保存到核心数据中。

让我们来解决我的问题,在我的 mainViewController 中,我获取数据并将它们填充到动态创建的标签中。这发生在 View 加载时。我想在按下 popViewController 关闭按钮时重新加载 mainViewController。

我在关闭按钮中试过我的代码在这里,我只是试图重新加载 mainVc:

         var mainVC = mainviewcontroller()         
@IBAction func close(sender: AnyObject) {
self.dismissViewControllerAnimated(true, completion: nil)
//mainVc.viewDidLoad()
mainVC.reloadInputViews()
}

不提供输出。结论:我想要一种快速从另一个 View 刷新 View Controller 的方法。

提前致谢。

最佳答案

只有使用 UITableView 我们才能重新加载数据!,所以我们必须使用表格 View 自定义单元格文本字段或标签。现在我们可以重新加载自定义文本字段数据。

关于swift - 当 PopViewController 关闭时重新加载 MainViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29575977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com