本文主要是介绍[Error]Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value: file,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用Swift自定义tableViewCell时报错:
Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value: file
解决
我这里是用XIB创建的cell,在tableView注册cell时使用错了方法。
// 纯代码创建的cell用这种方式注册
//tableView.register(LinkmanListCell.self, forCellReuseIdentifier: "LinkmanListCell");
// xib创建的cell用这种方式注册
tableView.register(UINib(nibName: "LinkmanListCell", bundle: nil), forCellReuseIdentifier: "LinkmanListCell");
这篇关于[Error]Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value: file的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!