自适应

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

}

你可能感兴趣的:(自适应)