ฉันตัดสินใจดำเนินการโปรเจ็กต์ที่เหลือต่อด้วย Swift เมื่อฉันเพิ่มคลาสที่กำหนดเอง (subclass ของUIViewcontroller
) ไปยังตัวควบคุมมุมมองสตอรี่บอร์ดของฉันและโหลดโปรเจ็กต์แอพก็ขัดข้องทันทีโดยมีข้อผิดพลาดดังต่อไปนี้:
ข้อผิดพลาดร้ายแรง: การใช้ initializer ที่ยังไม่ได้ใช้ '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 }
ทำไมเราถึงมีสองฟังก์ชั่น init? และความคิดใดที่ว่าทำไม Apple ถึงไม่มีค่าเริ่มต้นที่ 2 โดยค่าเริ่มต้น