私は残りのプロジェクトをSwiftで継続することにしました。カスタムクラス(のサブクラスUIViewcontroller
)をストーリーボードビューコントローラーに追加してプロジェクトをロードすると、次のエラーでアプリが突然クラッシュします。
致命的なエラー:クラスに実装されていない初期化子 'init(coder :)'を使用しています
これはコードです:
import UIKit
class TestViewController: UIViewController {
init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: NSBundle?) {
super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
// Custom initialization
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
/*
// #pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue?, sender: AnyObject?) {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
}
何か提案してください
init(style: UITableViewStyle) { super.init(style: style) // Custom initialization }
があるのはなぜですか?そして、なぜAppleがデフォルトで2番目のinitを含まないのか?