swift - UITableViewAutomaticDimension and its Height -


i'm using uitableviewautomaticdimension in tableview , working fine, when table loaded, need cell's row size. of table. possible ?

thanks in advance.

make viewcontroller conform uitableviewdelegate, set table view's delegate class, use method:

func tableview(_ tableview: uitableview, willdisplay cell: uitableviewcell, forrowat indexpath: indexpath) {     let frame = cell.frame     [...] } 

Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -