TableView の CellStyle について質問があります。
現在、xib 上に配置した View の上に配置した TableView を、UITableViewCellStyle.Value1 のスタイルで実現したいと考えておりますが、Value1が描画されず、Defaultのスタイルになってしまいます。

UITableViewCellStyle.Subtitle や UITableViewCellStyle.Value2 は正しくCellStyle が適用されるのですが、
何故か Value1 が適用されません。

下記のようなコードを記述しておりますが、不備はありますでしょうか。
提示コードに不足がありましたら、追加します。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    var cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "Cell")
    cell.textLabel?.text = "テスト"
    cell.detailTextLabel?.text = "詳細"

    return cell
}