gpt4 book ai didi

objective-c - swift 中的闭包可以用于两个类之间的通信吗?

转载 作者:行者123 更新时间:2023-11-28 06:18:17 26 4
gpt4 key购买 nike

我有一个用于 UITableView 的自定义单元格。当用户点击单元格中的按钮时,用户必须从当前的 ViewController1 导航到 ViewController2。我已经在自定义单元格类中定义了按钮操作。但是需要回调到 ViewController1

我尝试使用闭包,类似于我们在 Objective-C 中使用 block 的方式。在同一个类中使用它时效果很好。但是在 2 个不同的类中使用时出错。

最佳答案

你需要在那里使用委托(delegate)协议(protocol)。

示例:cell 发生某些事情时发送 UserItem 的协议(protocol):

protocol TappedUserDelegate: class {
func userInfoTapped(_ tappedUser: UserItem?)
}

在您的 Controller 中:

extension Controller: TappedUserDelegate {
func userInfoTapped(_ user: UserItem?) {
// user is tapped user in cell
}
}

在你的 tableView 函数中:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
// ........
cell.delegateUserTaps = self // for user info taps to perform segue
// ........
}

在您的自定义单元格中:

class CustomCell: UITableViewCell {
weak var delegateUserTaps: TappedUserDelegate? // for sending user info

// ........
func userInfoTapped() {
delegateUserTaps?.userInfoTapped(userItem) // <- send data to controller
}
}

userInfoTapped 被调用时,您在 Controller 中的功能将与该用户一起执行。

我已经给了你一个想法。

希望对你有帮助

关于objective-c - swift 中的闭包可以用于两个类之间的通信吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44436890/

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