[ios] Better menu rendering

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-11-17 00:14:03 +01:00 committed by Roman Tsisyk
parent 6ae19b40c2
commit 2a10247c6f

View file

@ -82,19 +82,6 @@ extension BottomMenuPresenter {
}
fatalError()
}
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return section > 0 ? 12 : 0
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
if section > 0 {
let view = UIView()
view.styleName = "BlackOpaqueBackground";
return view;
}
return nil
}
}