overridefunc viewDidLoad()
{ super.viewDidLoad() self.tableView.estimatedRowHeight =100
self.tableView.rowHeight = UITableViewAutomaticDimension
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
cell.textLabel?.numberOfLines =0
cell.textLabel?.preferredMaxLayoutWidth= CGRectGetWidth(tableView.bounds)
}
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat
{
return UITableViewAutomaticDimension
}
网友评论