I got the following error.
fatal error: unexpectedly found nil while unwrapping an Optional value
2017-09-20 23:08:46.626918+0400 UnitConverter[6852:10110844] fatal error: unexpectedly found nil while unwrapping an Optional value
Code and Image attached.
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let webVC = UIStoryboard.init(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "webVC") as! ViewController
webVC.lblCategory.text = self.uc.categories[indexPath.row]
}