Geri kalan projeme Swift ile devam etmeye karar verdim. Özel sınıfı (alt sınıfı UIViewcontroller
) film şeridi görünüm denetleyicime eklediğimde ve projeyi yüklediğimde, uygulama aniden aşağıdaki hatayla kilitleniyor:
ölümcül hata: sınıf için uygulanmamış başlatıcı 'init (coder :)' kullanımı
Bu bir kod:
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.
}
*/
}
Lütfen bir şey önerin
init(style: UITableViewStyle) { super.init(style: style) // Custom initialization }
Neden iki init fonksiyonuna sahip olabiliriz ? Ve Apple'ın varsayılan olarak 2. init'i neden içermediğine dair bir fikir var mı?