Var table: UITableView!

var table: UITableView!
UITableView? Is the optional UITableView type, then UITableView! What does it mean?

Mar.10,2021

! Indicates that this property cannot be empty, so you can use it without ? or unpacking
var table: UITableView!
if you declare it like this, then you must initialize the table, in the viewDidload or initialization method, otherwise you will collapse the property directly if you access it directly.


is also optional, but you can be sure it has a value when you use it. In this way, you can directly use tableView instead of tableView! Or if let tabel = tableView.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1c22029-335a9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1c22029-335a9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?