iOSプログラムをしています。
iOS: 9.3.2
XCode: 7.3.1

UITableviewのセルの高さが自動で行われません。

override func viewDidLoad() {
    super.viewDidLoad()

    self.table.estimatedRowHeight = 80
    self.table.rowHeight = UITableViewAutomaticDimension

のestimatedRowHeightやrowHeightは効かなくなってしまったのでしょうか?

    func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat { return セルの高さ }

は効きます。ご存知の方、ご教示お願いします。