I'm making an expandable / collapse table view.
I use Storyboard. And I also checked storyboard.
There is no problem with building.
But it doesn't work on emulators.
import UIKit class NoticeViewController: UIViewController, UITableViewDataSource, UITableViewDelegate { @IBOutlet weak var noticeTableView: UITableView! var imageArr = ["cm_contents_01", "cm_contents_02", "cm_contents_03"] var nameArr = ["Notice 1", "Notice 2", "Notice 3"] var selectedIndex = -1 var isCollapce = false override func viewDidLoad() { super.viewDidLoad() view.backgroundColor = .white noticeTableView.estimatedRowHeight = 3000 noticeTableView.rowHeight = UITableView.automaticDimension } ... There's an error here.
noticeTableView.estimatedRowHeight = 3000 And Storyboard connection.
When it was made separately, it was executed well, but it is combined with other projects, so there is an error.
Unexpectedly found nil while implicitly unwrapping an Optional value Please tell me why there is an error.

NoticeViewController?NoticeViewController?