@available(iOS 9.0, *) public class List: UITableView
UITableView
, UITableViewDataSource
, UITableViewDelegate
public init(defaultCellHeight: Float? = nil, estimatedCellHeight: Float? = nil, _ closure: () -> [UIView])
@discardableResult func didSelectHandler(_ action: @escaping (UIView) -> Void) -> Self
@discardableResult func configureCell(_ action: @escaping (UITableViewCell) -> Void) -> Self
public func numberOfSections(in tableView: UITableView) -> Int
public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
public func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat
public func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat
public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)