在自學練習時依照課本上的程式碼
但是Xcode卻出現了錯誤
想請教板上高手給予指導
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath:
NSIndexPath) -> UITableViewCell {
let cellIdentifier = "Cell"
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier,
forIndexPath: indexPath) as UITableViewCell
^^^
// Configure the cell...
cell.textLabel?.text = restaurantNames[indexPath.row]
cell.imageView?.image = UIImage(named: "restaurant")
return cell
}
Xcode建議我是不是要用as!
但是as!用了後沒出現問題但跑不出與範本一樣的結果...
想請高手給予一點指導>"<