gpt4 book ai didi

ios - 将变量分配给传入 View Controller 的正确方法

转载 作者:行者123 更新时间:2023-11-30 10:51:30 25 4
gpt4 key购买 nike

我正在开发一个简单的主从应用程序,它使用多个模态表单。

详细信息 ViewController 是一个 TableViewController,每个单元格中都有编辑按钮。

我想找到一种方法,在单击编辑按钮时将单元格的对象分配给传入的表单,以便可以在表单中显示正确的数据,但我不确定我是否已经完成这是正确的方法...

我使用了 @IBAction 作为编辑按钮,如下所示:

    // DetailViewController.swift

var activeBooking: Booking? = nil


@IBAction func onEditBooking(_ sender: Any) {
let button = sender as! UIButton
let cell = button.superview!.superview as! BookingCell
self.activeBooking = cell.booking!
}

然后在我的 prepare(for segue:) 方法中我有以下内容:

    // DetailViewController.swift

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier === "editBookingSegue" {
let controller = segue.destination as! EditRoomViewController
controller.booking = activeBooking
}
}

问题 1这个可以吗?我知道通过 segues 传递数据是合法的,并且它有效,但我担心这两个方法的执行顺序,是否会出现竞争条件,其中可以先调用 segue prepare 方法操作中发生的 activeBooking 分配?

问题 2另外,我不喜欢使用 button.superview!.superview – 看起来很困惑。有没有更简单的方法可以遍历到按下的按钮的 TableViewCell ?我想另一种选择是,在这种情况下,我可以通过子类化 UIButton 来简化它,以便 booking 对象也可以直接存储在按钮上。

最佳答案

让单元格完全拥有该按钮,并使用委托(delegate)方法将操作传递给 View Controller 。您的 View Controller 不需要知道该按钮。让按钮调用其单元格上的方法。然后,该单元将预订请求报告给其代表。

//myCell.swift

@IBAction func onEditBooking(_ sender: Any) {
bookingDelegate.edit(booking: self.booking)
}

// DetailViewController.swift

func edit(booking: Booking) {
activeBooking = booking
performSegue(withIdentifier: "editBookingSegue", sender: nil)
}

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "editBookingSegue" {
let controller = segue.destination as! EditRoomViewController
controller.booking = activeBooking
}

或者更好的方法是在prepare for segue 方法中使用sender 值来确定按下了哪个按钮。为其分配一个标签或其他东西。

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "editBookingSegue" {
let button = sender as! UIButton
let booking = bookingsArray[button.tag]
let controller = segue.destination as! EditRoomViewController
controller.booking = booking
}

关于ios - 将变量分配给传入 View Controller 的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54422813/

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