- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 UIBarButtonItem
,当它被关闭时,我想从模式 viewController 的值更新它。目前我只能通过获取当前可见的 viewController 来做到这一点,这是我不知道的'想要。有没有一种方法可以在关闭模态视图 Controller 后更新父 View Controller 。
class HomeViewController: UIViewController {
@IBOutlet weak var accountButton: UIBarButtonItem!
override func viewWillAppear(_ pAnimated: Bool) {
super.viewWillAppear(pAnimated)
self.accountButton.title = User.current!.firstName
}
@IBAction func accountButton(_ pSender: UIBarButtonItem) {
let editUserAccountVC = UIStoryboard.fs_instantiateFromStoryboard("Main", identifier: "EditUserAccountViewController") as! EditUserAccountViewController
let navVC = UINavigationController(rootViewController: editUserAccountVC)
navVC.view.tintColor = self.view.tintColor
self.present(navVC, animated: true)
}
}
}
这是编辑后关闭的模态
class EditUserAccountViewController: UIViewController {
var firstName: String?
@IBAction func saveButton(_ sender: Any) {
self.dismiss(animated: true) {
if let thePresentedViewController = self.presentingViewController as? HomeViewController {
thePresentedViewController.accountButton.title = self.firstName
}
}
}
}
最佳答案
我认为您应该在模态 Controller 实例中存储对父 Controller 的引用。您可以使用协议(protocol)使其更通用。声明以下协议(protocol)
:
protocol AccountButtonProvider: AnyObject {
var accountButtonTitle: String? { set get }
}
AnyObject
需要将对 AccountButtonProvider
的引用声明为 weak
。我想您将需要它来避免内存泄漏。
使 HomeViewController
符合 AccountButtonProvider
:
extension HomeViewController: AccountButtonProvider {
var accountButtonTitle: String? {
set {
accountButton.title = newValue
}
get {
return accountButton.title
}
}
}
然后将以下属性添加到 EditUserAccountViewController
:
weak var accountButtonProvider: AccountButtonProvider?
在呈现 EditUserAccountViewController
之前初始化此属性。为此,将 editUserAccountVC.accountButtonProvider = self
添加到 accountButton(_:)
:
@IBAction func accountButton(_ pSender: UIBarButtonItem) {
let editUserAccountVC = UIStoryboard.fs_instantiateFromStoryboard("Main", identifier: "EditUserAccountViewController") as! EditUserAccountViewController
editUserAccountVC.accountButtonProvider = self
}
你还应该修改saveButton(_:)
:
@IBAction func saveButton(_ sender: Any) {
self.dismiss(animated: true) {
self.accountButtonProvider?.actionButtonTitle = self.firstName
}
}
本文中的所有代码都在 Xcode 10.2.1 中进行了测试。我使用的是 Swift 5。
关于ios - 如何在模态 Viewcontroller 被解散后更新父 Viewcontroller 的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56183412/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!