passforios/pass/UserInterface/AutoCellHeightUITableViewController.swift
2019-05-01 18:30:13 +02:00

17 lines
413 B
Swift

//
// AutoCellHeightUITableViewController.swift
// pass
//
// Created by Danny Moesch on 17.02.19.
// Copyright © 2019 Bob Sun. All rights reserved.
//
import UIKit
class AutoCellHeightUITableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
tableView.estimatedRowHeight = 170
tableView.rowHeight = UITableView.automaticDimension
}
}