Saya memutuskan untuk melanjutkan proyek saya yang tersisa dengan Swift. Ketika saya menambahkan kelas khusus (subclass of UIViewcontroller
) ke controller tampilan storyboard saya dan memuat proyek, aplikasi tiba-tiba crash dengan kesalahan berikut:
kesalahan fatal: penggunaan inisialisasi initializer 'init (coder :)' yang tidak diterapkan untuk kelas
Ini adalah kode:
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.
}
*/
}
Tolong sarankan sesuatu
init(style: UITableViewStyle) { super.init(style: style) // Custom initialization }
Mengapa kita bisa memiliki dua fungsi init? Dan tahu mengapa Apple tidak memasukkan init ke-2 secara default?