imzyf / ios-swift-learning-notes

📝 iOS Swift Learning Notes - see Issues
MIT License
0 stars 0 forks source link

UITableView 属性设置 #23

Closed imzyf closed 6 years ago

imzyf commented 6 years ago

注册 cell

self.register(UITableViewCell.self, forCellReuseIdentifier: "dialogue_cell")

动态高度

self.estimatedRowHeight = 44.0;
self.rowHeight = UITableViewAutomaticDimension

去除分割线

self.separatorStyle = .none
imzyf commented 6 years ago

取消 cell 的选中效果

cell.selectionStyle = .none
imzyf commented 6 years ago

so easy