Why does the first line in the method below give me an EXC_BAD_INSTRUCTION
runtime error?
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
let cellIdentifier = NSStringFromClass(MessageCell)
var cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier) as MessageCell
// ...
}