OK..let it's very easy to do.
In line:
let cell = tableView.dequeueReusableCellWithIdentifier("Cell")
You get access to the method dequeueReusableCellWithIdentifier tableView, if you look at the documentation, you can see that the return type is AnyObject?.
Now suppose you want to access the property textLabelas
cell.textLabel!.text = "Spring \(indexPath.row + 1)"
You cannot do this ... because not textLabelon AnyObjecttype.
, , UITableViewCell, , :
let cell = tableView.dequeueReusableCellWithIdentifier("Cell") as! UITableViewCell