How does one instantiate a generics-supported UIViewController subclass?
For example, consider a class like
class SpecialViewController<T: UIView> : UIViewController{ }Interface Builder does not seem to handle these (in neither Storyboards nor simple .xibs)
Furthermore, the default initializers seem to no longer be inherited (init, init(withNibName: String, bundle: ...), and even init(style: UITableViewStyle) for UITableViewController subclasses)
Are there any known workarounds?