在自学练习时依照课本上的程式码
但是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!用了后没出现问题但跑不出与范本一样的结果...
想请高手给予一点指导>"<