|
@@ -33,14 +33,11 @@ class PublishMusicView: BaseView {
|
|
}
|
|
}
|
|
|
|
|
|
lazy var tableView: UITableView = {
|
|
lazy var tableView: UITableView = {
|
|
- let tableView = UITableView(frame: CGRect.zero, style: UITableView.Style.grouped)
|
|
|
|
|
|
+ let tableView = UITableView(frame: CGRect.zero, style: UITableView.Style.plain)
|
|
tableView.separatorStyle = .none
|
|
tableView.separatorStyle = .none
|
|
tableView.backgroundColor = UIColor.clear
|
|
tableView.backgroundColor = UIColor.clear
|
|
tableView.dataSource = self
|
|
tableView.dataSource = self
|
|
tableView.delegate = self
|
|
tableView.delegate = self
|
|
- tableView.estimatedRowHeight = 50
|
|
|
|
- tableView.estimatedSectionFooterHeight = 0.000001
|
|
|
|
- tableView.estimatedSectionHeaderHeight = 0.000001
|
|
|
|
return tableView
|
|
return tableView
|
|
}()
|
|
}()
|
|
}
|
|
}
|