9
我在網上看了很多文章和書(蘋果),但我無法找出區別?和! Swift語言中的運算符。區別?和!在Swift語言中?
override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!
{
}
override func numberOfSectionsInTableView(tableView: UITableView?) -> Int {
return 1;
}
在上面的代碼中,第一個func將tableView聲明爲!並在第二個函數tableView被聲明爲?。
這些符號在Apple的免費快捷書籍中有解釋。 – John