Я решил продолжить мой оставшийся проект с помощью Swift-language. Когда я добавил пользовательский класс (класс .swift, который был подкласс для UIViewcontroller) в моем диспетчере просмотра раскадровки и загрузил проект внезапно с помощью приложения error
фатальная ошибка: использование нереализованного инициализатора '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.
}
*/
}
Пожалуйста, предложите что-нибудь,