Generic type
Storyboard 에서 Generic Type 의존성 주입하기 2
기존 Storyboard 에서 Generic Type 의존성 주입하기에서 큰 이슈가 있었다. 바로 iOS 13 미만 버젼에서 IBOutlet이 연결되지 않아서 앱이 크래쉬가 나는 이슈가 났음.. import UIKit typealias UIStoryboard = _DependencyInjectionStoryboard final class _DependencyInjectionStoryboard { private let storyBoard: UIKit.UIStoryboard init(name: String, bundle: Bundle?) { self.storyBoard = UIKit.UIStoryboard.init( name: name, bundle: bundle ) } func instantiateView..