当前位置: 代码迷 >> 综合 >> iOS 设置 tableView 代理, 注册 cell, 自适应高度.
  详细解决方案

iOS 设置 tableView 代理, 注册 cell, 自适应高度.

热度:30   发布时间:2023-12-22 17:59:59.0
// 设置 tableView 代理, 注册 cell, 自适应高度.+(void)tableViewRegister:(UITableView *)tableView  identifier:(NSString *)identifier delegate:(id)delegate {tableView.estimatedRowHeight = 50.0f;tableView.rowHeight = UITableViewAutomaticDimension;// identifier 与 cell 类文件名相同[tableView registerNib:[UINib nibWithNibName:identifier bundle:[NSBundle mainBundle]] forCellReuseIdentifier:identifier];tableView.delegate = delegate;tableView.dataSource = delegate;}

 

  相关解决方案