gpt4 book ai didi

ios - 如何在从 UITableViewController 到 UIViewController 的 Unwind segue 中声明 UITableViewController

转载 作者:行者123 更新时间:2023-11-29 02:12:40 26 4
gpt4 key购买 nike

我有我的主视图和一个 RoutinesTableViewController。

我想放松回到我的 VC 并尝试了这个:

@IBAction func selectRoutine(segue:UIStoryboardSegue) {
let RoutinesTableViewController = segue.sourceViewController as RoutinesTableViewController
if let selectedRoutine = RoutinesTableViewController.selectedRoutine {
RoutineLabel.titleLabel = routine.valueForKey("name") as? String
}
}

我遇到了一个错误

    let RoutinesTableViewController = segue.sourceViewController as RoutinesTableViewController

**使用未声明类型的 RoutinesTableViewController **

但是上面肯定是一个UITableViewController类和 Controller

segue.sourceViewController 只能用于 UIViewControllers 吗?

最佳答案

在这一行

let RoutinesTableViewController = 

你正在分配一个类(class)。也许你的意思是

let routinesTableViewController = 

关于ios - 如何在从 UITableViewController 到 UIViewController 的 Unwind segue 中声明 UITableViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29112227/

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