Swift 中 ViewController 默认构造方法不关联同名的xib文件

前端之家收集整理的这篇文章主要介绍了Swift 中 ViewController 默认构造方法不关联同名的xib文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

该文有错http://years.im/Home/Article/detail/id/53.html


纠正为:

init() {

super.init(nibName: "MYUIViewController",bundle: NSBundle.mainBundle())

}

required init(coder aDecoder: NSCoder) {

super.init(coder: aDecoder)

}

原文链接:https://www.f2er.com/swift/325523.html

猜你在找的Swift相关文章