在swift中,您可以使用prepare(segue:)
中switch语句的一个很酷的功能来创建基于目标视图控制器类型的案例:
例:
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
switch segue.destination {
case let detailViewController as DetailViewController:
detailViewController.title = "DetailViewController"
}
case let otherViewController as OtherViewController:
otherViewController.title = "OtherViewController"
}
}
但是,如果segue是由分割视图控制器触发的,那么目标是导航控制器,你真正想要做的是打开导航控制器的顶视图控制器的类?
我想做这样的事情:
case let nav as UINavigationController,
let detailViewController = nav.topViewController as? DetailViewController:
//case code goes here
我在多个部分if let
可选绑定中使用相同的构造。
这不起作用。相反,我必须做一个像这样的相当痛苦的结构:
case let nav as UINavigationController
where nav.topViewController is DetailViewController:
guard let detailViewController = nav.topViewController as? DetailViewController
else {
break
}
detailViewController.title = "DetailViewController"
这是有效的,但似乎不必要的冗长,并模糊了意图。有没有办法在Swift 3中使用像这样的开关语句的情况下使用多部分可选绑定?
我认为有一种方法可以用switch
和case
做到这一点,但是你可以用if
和case
做更接近你正在寻找的东西(更新:正如Hamish指出的那样,甚至不需要case
)情景)或只是正常的if let
:
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if let nav = segue.destination as? UINavigationController,
let detailViewController = nav.topViewController as? DetailViewController {
detailViewController.title = "DetailViewController"
}
if let otherViewController? = segue.destination as? OtherViewController {
otherViewController.title = "OtherViewController"
}
}
由于此示例中的switch语句实际上并不会被编译器验证为处理所有情况(因为您需要创建一个默认情况),因此使用switch
而不仅仅是if let
没有额外的好处
你可能会觉得这个扩展很有用......
extension UIStoryboardSegue {
var destinationNavTopViewController: UIViewController? {
return (destination as? UINavigationController)?.topViewController ?? destination
}
}
然后你可以简单地......
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
switch segue.destinationNavTopViewController {
case let detailViewController as? DetailViewController:
// case code goes here
}
不是?? destination
确保返回值是非可选的,并且还允许它在destination
也可以是非导航控制器的地方工作。
我找到了解决这个问题的合适解决方案。
它涉及在switch语句之前进行一些设置,然后在switch语句中使用元组。这是看起来像:
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
let dest = segue.destination
let navTopVC = (dest as? UINavigationController)?.topViewController
switch (dest, navTopVC) {
case (_, let top as VC1):
top.vc1Text = "Segue message for VC1"
case (_, let top as VC2):
top.vc2Text = "Segue message for VC2"
case (let dest as VC3, nil):
dest.vc3Text = "Segue message for VC3"
default:
break
}
}
可选绑定并不像你想要的那样真正适用于交换机。
我理解使用开关的愿望而不是简单的if和if else,但它在概念上与开关的意图有点不同。
无论如何,这是我在大多数情况下使用的两个选项
func prepare(for segue: UIStoryboardSegue, sender: Any?) {
switch segue.destination {
case is DetailViewController:
segue.destination.title = "DetailViewController"
case is OtherViewController:
segue.destination.title = "OtherViewController"
default:
break
}
}
要么
func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if let controller = seuge.destination as? DetailViewController {
controller.title = "DetailViewController"
}
else if let controller = seuge.destination as? OtherViewController {
controllercontroller.title = "OtherViewController"
}
}
在我看来,你应该使用segue标识符来控制这个交换机中的流量。但要回答你的问题,这应该适合你。
switch (segue.destination as? UINavigationController)?.topViewController ?? segue.destination {
...
}
根据语法,事情是,案例项列表中的每个项目只有一个模式(在您的情况下是绑定)。由于输入中只有一个项目但想要使用两个模式,因此您要么标准化输入(在这种情况下适合您,如上所示)或扩展项目列表(在这种情况下不合适但我展示了例子如下)。
switch ((segue.destination as? UINavigationController)?.topViewController, segue.destination) {
case (let tvc, let vc) where (tvc ?? vc) is DetailViewController:
// TODO: If you await your DetailViewController in navigation or without.
break
case (let tvc as DetailViewController, _):
// TODO: If you await your DetailViewController in navigation but other vc is not in a navigation vc.
default:
fatalError()
}