[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");

 

你可能感兴趣的:([iOS]报错记录)