Slide 44
Slide 44 text
Sansan Builders Box
遷移先の Router の不在
- 途中から導⼊したため、遷移先の画⾯は Cocoa MVC
- Router がいるわけない
- ⽤意した拡張も使えない…
// BaseRouter.swift
extension UIViewController {
func presentRouter(_ router: BaseRouter, animated: Bool = true, completion: (() -> Void)? = nil) {
present(router.viewController, animated: animated, completion: completion)
}
}
extension UINavigationController {
func pushRouter(_ router: BaseRouter, animated: Bool = true) {
pushViewController(router.viewController, animated: animated)
}
}