标签:
//Xcode6.3以后label自适应需要添加两个属性
_tableView.rowHeight = UITableViewAutomaticDimension;
//给予预计行高
_tableView.estimatedRowHeight = 44;
TableView中Label自适应高度
原文地址:http://www.cnblogs.com/block123/p/4919990.html