自适应
2018-01-17 本文已影响0人
法库德
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
}